/* ========================================
   Modern Homepage UI Styles
   ======================================== */

:root {
    --gold-primary: #d4af37;
    --gold-dark: #b8860b;
    --gold-light: #f4e4b8;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* ========================================
   Body & Container
   ======================================== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Modern Slideshow Enhancements
   ======================================== */
.slideshow-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.slideshow-content {
    backdrop-filter: blur(2px);
}

.ss-small-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.95;
}

.ss-mega-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.ss-btnWrap {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.ss-btnWrap .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Modern Button Styles
   ======================================== */
.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border: none;
    color: white;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--gold-dark);
    border: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-danger {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: none;
    color: white;
}

/* ========================================
   User Dashboard Section
   ======================================== */
.service-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
    clear: both;
    width: 100%;
    overflow: hidden;
}

.service-section .container {
    max-width: 1320px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header h4 {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

/* ========================================
   Service Cards (Dashboard Cards)
   ======================================== */
.service-info {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
}

/* Override Bootstrap grid for dashboard cards */
.service-section .service-info.row {
    --bs-gutter-x: 25px;
    --bs-gutter-y: 25px;
    margin-left: 0;
    margin-right: 0;
}

.service-section .col-item {
    padding-left: 12.5px;
    padding-right: 12.5px;
    margin-bottom: 25px;
}

/* Force 4 columns on desktop */
@media (min-width: 992px) {
    .service-info .col-item {
        flex: 0 0 auto;
        width: 25%;
    }
}

/* 4 columns on medium tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .service-info .col-item {
        flex: 0 0 auto;
        width: 25%;
    }
}

/* 2 columns on mobile */
@media (max-width: 767px) {
    .service-info .col-item {
        flex: 0 0 auto;
        width: 50%;
    }
}

.service-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
    width: 100%;
}

/* Ensure clickable cards maintain styling */
a.service-wrap {
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    flex-direction: column;
}

a.service-wrap:hover {
    color: inherit !important;
}

.service-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-wrap:hover::before {
    transform: scaleX(1);
}

.service-wrap:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light) 0%, #fff9e6 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.service-wrap:hover .service-icon::after {
    opacity: 0.2;
}

.service-wrap:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
}

.service-icon img {
    max-width: 100%;
    height: auto;
    transition: filter 0.4s ease;
}

.service-wrap:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3,
.service-content .title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.service-content .text-muted,
.service-content span.text-muted {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--gold-dark) !important;
    display: block;
}

.service-content small {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 8px;
    display: block;
}

/* ========================================
   Collection Slider Section
   ======================================== */
.collection-slider {
    padding: 80px 0;
    background: white;
}

.category-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
    box-shadow: var(--shadow-sm);
}

.category-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-link {
    display: block;
    text-decoration: none;
}

.zoom-scal {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.zoom-scal img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: auto;
}

.category-item:hover .zoom-scal img {
    transform: scale(1.15);
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 5px;
}

.category-item .counts {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========================================
   Product Tabs Section
   ======================================== */
.tab-slider-product {
    padding: 80px 0;
    background: var(--bg-light);
}

.nav-tabs.style1 {
    border: none;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav-tabs .nav-link {
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    transition: height 0.3s ease;
    z-index: -1;
}

.nav-tabs .nav-link:hover::before,
.nav-tabs .nav-link.active::before {
    height: 100%;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
    color: white;
    border-color: var(--gold-primary);
    background: transparent;
}

/* ========================================
   Product Cards
   ======================================== */
.product-box {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-box:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    aspect-ratio: 1;
}

.product-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-box:hover .product-image img {
    transform: scale(1.12);
}

/* ========================================
   MODERN PRODUCT BADGES WITH ANIMATIONS
   ======================================== */

.product-labels {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.product-labels .lbl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Shimmer/Shine effect */
.product-labels .lbl::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

/* Floating/Pulsing animation */
@keyframes float-pulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.05);
    }
}

.product-labels .lbl {
    animation: float-pulse 3s ease-in-out infinite;
}

/* NEW Badge - Luxury Gold with Multi-layer Shadow */
.lbl.on-sale {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8941E 100%);
    color: #1a1a1a;
    text-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.5),
        0 2px 8px rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 6px 24px rgba(212, 175, 55, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.lbl.on-sale:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 
        0 10px 35px rgba(212, 175, 55, 0.8),
        0 0 0 4px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* HOT/Featured Badge - Blue gradient */
.lbl.pr-label2,
.lbl.hot {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 6px 24px rgba(59, 130, 246, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* SALE Badge - Red gradient */
.lbl.sale {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 6px 24px rgba(239, 68, 68, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Additional sparkle effect on hover */
.product-box:hover .product-labels .lbl::after {
    content: '✨';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 12px;
    animation: sparkle 1s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .product-labels .lbl {
        padding: 8px 18px;
        font-size: 10px;
        letter-spacing: 1.2px;
    }
}

@media (max-width: 767px) {
    .product-labels {
        top: 8px;
        left: 8px;
    }
    
    .product-labels .lbl {
        padding: 7px 15px;
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .product-box:hover .product-labels .lbl::after {
        display: none;
    }
}

.product-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    margin-bottom: 12px;
}

.product-name a {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--gold-dark);
}

.product-price {
    margin-top: auto;
}

/* ========================================
   PRODUCT CARD BUTTONS
   ======================================== */

/* Hover Buttons on Product Image */
.product-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.product-box:hover .product-buttons {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) translateY(-10px);
}

.btn-quick-view,
.btn-add-cart {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-quick-view::before,
.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-quick-view:hover::before,
.btn-add-cart:hover::before {
    width: 100%;
    height: 100%;
}

.btn-quick-view svg,
.btn-add-cart svg {
    width: 22px;
    height: 22px;
    color: var(--gold-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-quick-view:hover svg,
.btn-add-cart:hover svg {
    color: white;
    transform: scale(1.1);
}

.btn-quick-view:hover,
.btn-add-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

/* Main Add to Cart Button */
.product-card-actions {
    padding: 0 20px 20px 20px;
    margin-top: auto;
}

.btn-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: white;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-add-to-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-add-to-cart:hover::before {
    width: 300px;
    height: 300px;
}

.btn-add-to-cart .cart-icon {
    width: 20px;
    height: 20px;
    stroke: white;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-add-to-cart span {
    position: relative;
    z-index: 1;
}

.btn-add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-add-to-cart:hover .cart-icon {
    transform: scale(1.1) rotate(-5deg);
    animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {
    0%, 100% {
        transform: scale(1.1) rotate(-5deg) translateY(0);
    }
    50% {
        transform: scale(1.1) rotate(-5deg) translateY(-5px);
    }
}

.btn-add-to-cart:active {
    transform: translateY(-1px);
}

/* Alternative Button Style - Outline */
.btn-add-to-cart.outline-style {
    background: white;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.btn-add-to-cart.outline-style::before {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
}

.btn-add-to-cart.outline-style .cart-icon {
    stroke: var(--gold-primary);
}

.btn-add-to-cart.outline-style:hover {
    color: white;
    border-color: var(--gold-dark);
}

.btn-add-to-cart.outline-style:hover .cart-icon {
    stroke: white;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .btn-quick-view,
    .btn-add-cart {
        width: 45px;
        height: 45px;
    }
    
    .btn-quick-view svg,
    .btn-add-cart svg {
        width: 20px;
        height: 20px;
    }
    
    .btn-add-to-cart {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-add-to-cart .cart-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 767px) {
    .product-buttons {
        gap: 10px;
    }
    
    .btn-quick-view,
    .btn-add-cart {
        width: 42px;
        height: 42px;
    }
    
    .btn-quick-view svg,
    .btn-add-cart svg {
        width: 18px;
        height: 18px;
    }
    
    .product-card-actions {
        padding: 0 15px 15px 15px;
    }
    
    .btn-add-to-cart {
        padding: 12px 18px;
        font-size: 13px;
        letter-spacing: 0.8px;
    }
    
    .btn-add-to-cart .cart-icon {
        width: 16px;
        height: 16px;
    }
}

/* Hover Effect Overlay on Product Image */
.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(212, 175, 55, 0) 0%,
        rgba(212, 175, 55, 0.15) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-box:hover .product-image::after {
    opacity: 1;
}

.product-price .price {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 6px;
}

.tm-prodetails-singleinfo {
    font-size: 13px;
    color: var(--text-muted);
    margin: 5px 0;
    padding: 4px 0;
    line-height: 1.4;
}

/* ========================================
   View Collection Button
   ======================================== */
.view-collection {
    margin-top: 50px;
}

.view-collection .btn-lg {
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ========================================
   Floating Buttons Enhancements
   ======================================== */
.sticky-button {
    position: fixed;
    right: 20px;
    top: 80%;
    transform: translateY(-50%);
    background: white;
    border: none;
    cursor: pointer;
    z-index: 999;
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
}

.sticky-button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.sticky-button img {
    width: 80px;
    height: auto;
    display: block;
}

.sticky-button strong {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--gold-dark);
    font-weight: 700;
}

.whatsapp-float {
    position: fixed;
    width: 64px;
    height: 64px;
    bottom: 100px;
    left: 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
}

/* ========================================
   Modal Styles
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border: none;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--text-muted);
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    color: var(--gold-dark);
    margin: 20px 0 15px;
    font-size: 28px;
    font-weight: 700;
}

.modal-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .ss-mega-title {
        font-size: 48px;
    }
    
    .section-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .service-section {
        padding: 60px 0 40px;
    }
    
    .collection-slider,
    .tab-slider-product {
        padding: 60px 0;
    }
    
    .ss-mega-title {
        font-size: 40px;
    }
    
    .section-header h1 {
        font-size: 32px;
    }
    
    .nav-tabs.style1 {
        flex-wrap: wrap;
    }
    
    .nav-tabs .nav-link {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .ss-mega-title {
        font-size: 32px;
    }
    
    .ss-small-title {
        font-size: 14px;
    }
    
    .ss-btnWrap .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .section-header h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .service-wrap {
        padding: 25px 15px;
        min-height: 180px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon img {
        width: 50px;
    }
    
    .service-content h3,
    .service-content .title {
        font-size: 14px;
    }
    
    .service-content .text-muted,
    .service-content span.text-muted {
        font-size: 20px !important;
    }
    
    .service-section .service-info.row {
        --bs-gutter-x: 15px;
        --bs-gutter-y: 15px;
    }
    
    .service-section .col-item {
        padding-left: 7.5px;
        padding-right: 7.5px;
        margin-bottom: 15px;
    }
}
    
    .sticky-button {
        right: 10px;
    }
    
    .sticky-button img {
        width: 60px;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 85px;
        left: 15px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .service-section {
        padding: 40px 0 30px;
    }
    
    .collection-slider,
    .tab-slider-product {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .ss-mega-title {
        font-size: 28px;
    }
    
    .section-header h1 {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .product-name a {
        font-size: 14px;
    }
    
    .tm-prodetails-singleinfo {
        font-size: 12px;
    }
    
    .view-collection .btn-lg {
        padding: 14px 36px;
        font-size: 14px;
    }
}

/* ========================================
   Animation Enhancements
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes goldPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); 
    }
    50% { 
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); 
    }
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: whatsappPulse 2.5s infinite;
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .sticky-button,
    .whatsapp-float,
    .btn-danger {
        display: none !important;
    }
}

