/* ----------------------------------------------------------------
	Custom CSS
	
	Sparkle & Luxury Enhancements
-----------------------------------------------------------------*/

:root {
    --luxury-gold: #c19a6b;
    --luxury-gold-dark: #a68156;
    --luxury-soft-bg: #fcf8f2;
    --luxury-dark: #111111;
    --luxury-gray: #777777;

    /* Variable Aliases for consistency */
    --premium-gold: var(--luxury-gold);
    --premium-black: var(--luxury-dark);
}


/* Typography Extensions - Elegant & Refined */
.font-serif {
    font-family: var(--cnvs-primary-font) !important;
    font-style: italic;
    letter-spacing: 0.5px;
}

.font-secondary-ls {
    font-family: var(--cnvs-secondary-font);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Sparkle Animation */
@keyframes sparkle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }

    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

@keyframes shine {
    0% {
        left: -100%;
        top: -100%;
    }

    100% {
        left: 100%;
        top: 100%;
    }
}

/* Button Sparkle Effect */
.btn-sparkle {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-sparkle::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: -1;
    transition: none;
}

.btn-sparkle:hover::after {
    animation: shine 0.7s;
}

/* Card Sparkle Wrapper */
.card-sparkle {
    position: relative;
    overflow: hidden;
}

.card-sparkle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 215, 0, 0) 0%, rgba(255, 215, 0, 0.2) 50%, rgba(255, 215, 0, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    transition: left 0.7s;
    pointer-events: none;
}

.card-sparkle:hover::before {
    left: 125%;
    transition: left 0.7s ease-in-out;
}

/* Luxury Shadow Utilities */
.shadow-luxury {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1), 0 0 15px rgba(193, 154, 107, 0.1);
}

.shadow-luxury-hover:hover {
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15), 0 0 25px rgba(193, 154, 107, 0.2);
    transform: translateY(-5px);
}


/* Luxury Buttons */
.btn-luxury {
    background-color: var(--luxury-dark);
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid var(--luxury-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-luxury:hover {
    background-color: transparent;
    color: var(--luxury-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-luxury-outline {
    background-color: transparent;
    color: var(--luxury-dark) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid var(--luxury-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-luxury-outline:hover {
    background-color: var(--luxury-dark);
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-luxury-gold {
    background-color: var(--luxury-gold);
    color: #fff !important;
    border-color: var(--luxury-gold);
}

.btn-luxury-gold:hover {
    background-color: var(--luxury-gold-dark);
    border-color: var(--luxury-gold-dark);
}

/* Unified Premium Hero */
.premium-page-header {
    position: relative;
    padding: 120px 0 80px;
    background-color: var(--luxury-soft-bg);
    background-size: cover;
    background-position: center center;
    text-align: center;
    overflow: hidden;
}

/* ----------------------------------------------------------------
	Header Navigation - Premium Redesign
-----------------------------------------------------------------*/

/* Menu Link Typography */
.menu-link {
    font-family: var(--cnvs-primary-font) !important;
    /* Bodoni Moda */
    font-weight: 500 !important;
    font-size: 1.05rem !important;
    letter-spacing: 0.5px;
    color: var(--premium-black) !important;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover Color */
.menu-item:hover>.menu-link,
.menu-link:hover {
    color: var(--premium-gold) !important;
}

/* Gold Underline Animation */
.menu-item>.menu-link>div::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0%;
    height: 2px;
    background-color: var(--premium-gold);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(-50%);
    opacity: 0;
}

.menu-item:hover>.menu-link>div::after,
.menu-item.current>.menu-link>div::after {
    width: 100%;
    opacity: 1;
}

/* Dropdown Menu - Elegant Style */
.sub-menu-container,
.mega-menu-content {
    border-top: 3px solid var(--premium-gold) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
    border-radius: 0 0 8px 8px;
    padding: 15px 0 !important;
    background: #fff !important;
    animation: slideUpMenu 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    display: block;
    /* Ensure display for animation */

    /* Initially hidden for animation */
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

/* Show dropdown on hover */
.menu-item:hover .sub-menu-container,
.menu-item:hover .mega-menu-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@keyframes slideUpMenu {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown Items */
.sub-menu-container .menu-item>.menu-link {
    font-family: var(--cnvs-body-font) !important;
    /* Back to sans for readability in lists */
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    text-transform: none;
    padding: 8px 20px !important;
    color: #555 !important;
    border: none !important;
}

.sub-menu-container .menu-item:hover>.menu-link {
    color: var(--premium-gold) !important;
    background: transparent !important;
    padding-left: 25px !important;
    /* Subtle shift */
}

/* Icons in Submenu */
.sub-menu-container .menu-item:hover>.menu-link i {
    opacity: 1;
    margin-right: 5px;
}


.premium-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    /* Subtle dark overlay for readability */
}

.premium-page-header.dark::before {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.premium-page-header .container {
    position: relative;
    z-index: 2;
}

.premium-page-header .before-title {
    font-family: var(--cnvs-secondary-font);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    color: var(--luxury-gold);
}

.premium-page-header h1 {
    font-family: var(--cnvs-primary-font);
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.premium-page-header.dark h1,
.premium-page-header.dark .breadcrumb-item,
.premium-page-header.dark .breadcrumb-item a {
    color: #fff !important;
}

.premium-page-header .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.premium-page-header .breadcrumb-item {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-page-header .breadcrumb-item.active {
    color: var(--luxury-gold);
}


/* Fix Top Cart Z-Index Issue over Sticky Elements */
#header,
#header-wrap {
    z-index: 1040 !important;
    /* Ensure header is above sticky-top (1020) */
}

#top-cart-content {
    z-index: 1050 !important;
}

/* ----------------------------------------------------------------
	Account Section Redesign
-----------------------------------------------------------------*/

.account-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.account-nav .list-group-item {
    border: none;
    padding: 12px 15px;
    border-radius: 8px !important;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.account-nav .list-group-item i {
    font-size: 1.1rem;
    width: 24px;
    margin-right: 12px;
}

.account-nav .list-group-item:hover {
    background-color: var(--cnvs-color-secondary);
    color: var(--cnvs-themecolor);
}

.account-nav .list-group-item.active {
    background-color: var(--cnvs-themecolor);
    color: #fff;
}

.account-nav .list-group-item.text-danger:hover {
    background-color: #fff5f5;
}

.account-main-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.account-page-header {
    margin-bottom: 30px;
}

.account-page-header h3 {
    font-family: var(--cnvs-primary-font);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--cnvs-themecolor);
}

.account-page-header span {
    color: #888;
    font-size: 0.95rem;
}

/* Dashboard Cards */
.dashboard-tile {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background: #fff;
}

.dashboard-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--cnvs-themecolor);
}

.dashboard-tile i {
    font-size: 2.5rem;
    color: var(--cnvs-themecolor);
    margin-bottom: 15px;
    display: block;
}

.dashboard-tile h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.dashboard-tile p {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

/* Premium Table Styling */
.premium-table {
    width: 100%;
}

.premium-table thead th {
    background: #fcf8f2;
    border-bottom: 2px solid #eee;
    padding: 15px;
    font-weight: 600;
    color: var(--cnvs-themecolor);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.premium-table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #f5f5f5;
}

.premium-table tbody tr:hover {
    background-color: #fafbfc;
}

/* Custom Badges */
.badge-premium {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.75rem;
}

/* ----------------------------------------------------------------
	Home/Index Page Styles
-----------------------------------------------------------------*/

/* Hero image zoom and fade-in animation */
.slider-inner {
    animation: heroZoomIn 2s ease-out forwards;
    opacity: 0;
}

@keyframes heroZoomIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Text content fade-up animation */
.hero-content-wrapper {
    opacity: 0;
    animation: fadeUpIn 1.5s ease-out 0.5s forwards;
}

@keyframes fadeUpIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title letter-spacing animation */
.hero-subtitle {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
}

.hero-title {
    opacity: 0;
    animation: fadeIn 1.2s ease-out 1s forwards;
}

.hero-button {
    opacity: 0;
    animation: fadeIn 1s ease-out 1.4s forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Parallax smooth transition */
.slider-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    animation: overlayFade 2s ease-out forwards;
}

@keyframes overlayFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

/* New Parallax Section Effects */
.image-hover-scale {
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.image-hover-scale img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-hover-scale:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.image-hover-scale:hover img {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1);
}

.image-hover-scale::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.6s;
    z-index: 1;
    pointer-events: none;
}

.image-hover-scale:hover::after {
    opacity: 1;
}

.text-reveal-effect {
    position: relative;
    display: inline-block;
}

/* Parallax Section Image Animations */
.cascading-image {
    position: relative;
    perspective: 1000px;
}

.cascading-image img {
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, filter, box-shadow;
    backface-visibility: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Staggered entrance animations */
.cascading-image:nth-child(1) img {
    animation: imageSlideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both, imageGlow 3s ease-in-out 1.4s infinite, floatUp 6s ease-in-out 2s infinite;
}

.cascading-image:nth-child(2) img {
    animation: imageSlideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both, imageGlow 3s ease-in-out 1.7s infinite, floatDown 6s ease-in-out 2.3s infinite;
}

.cascading-images-inner:last-child .cascading-image:nth-child(1) img {
    animation: imageSlideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both, imageGlow 3s ease-in-out 1.5s infinite, floatDown 6s ease-in-out 2.1s infinite;
}

.cascading-images-inner:last-child .cascading-image:nth-child(2) img {
    animation: imageSlideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both, imageGlow 3s ease-in-out 1.8s infinite, floatUp 6s ease-in-out 2.4s infinite;
}

@keyframes imageSlideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px) translateY(30px) scale(0.8) rotateY(-15deg);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1) rotateY(0deg);
        filter: blur(0);
    }
}

@keyframes imageSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px) translateY(30px) scale(0.8) rotateY(15deg);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1) rotateY(0deg);
        filter: blur(0);
    }
}

@keyframes imageGlow {

    0%,
    100% {
        box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3), 0 0 0 rgba(255, 215, 0, 0);
    }

    50% {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.2);
    }
}

/* Enhanced hover effects */
.cascading-image:hover img {
    transform: scale(1.08) translateY(-15px) rotateY(5deg) rotateX(-5deg) !important;
    box-shadow: 0 35px 70px -15px rgba(50, 50, 93, 0.4), 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.3), inset 0 0 50px rgba(255, 255, 255, 0.1);
    filter: brightness(1.1) contrast(1.05) saturate(1.2);
    z-index: 100;
}

/* Image overlay with gradient animation */
.cascading-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 192, 203, 0.05) 50%, rgba(138, 43, 226, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    border-radius: inherit;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.cascading-image:hover::before {
    opacity: 1;
    animation: overlayShimmer 2s ease-in-out infinite;
}

@keyframes overlayShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Shimmer effect on hover */
.cascading-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s;
    z-index: 2;
    pointer-events: none;
}

.cascading-image:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    transition: transform 0.8s ease-in-out;
}

/* Parallax container enhancements */
.cascading-images {
    position: relative;
    overflow: visible;
}

.cascading-images-inner {
    position: relative;
}

/* Smooth parallax transitions */
.cascading-image>div {
    transition: transform 0.1s ease-out;
}

/* Enhanced image styling with subtle border effect */
.cascading-image img {
    position: relative;
    outline: 2px solid transparent;
    outline-offset: 4px;
    transition: outline-color 0.6s ease;
    z-index: 0;
}

.cascading-image:hover img {
    outline-color: rgba(255, 215, 0, 0.6);
    z-index: 3;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Pause animations on hover, but ensure image stays visible */
.cascading-image:hover img {
    animation-play-state: paused;
}

/* Ensure images are always visible and animations resume after hover */
.cascading-image img {
    animation-fill-mode: both;
}



.category-card {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-card img {
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
}



.footer-custom {
    background-color: var(--cnvs-color-secondary);
}

/* ----------------------------------------------------------------
	Product/Details Page Styles
-----------------------------------------------------------------*/
:root {
    --premium-gold: #D4AF37;
    --premium-black: #1a1a1a;
    --premium-gray: #f9f9f9;
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

.main-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--premium-gray);
    cursor: pointer;
    margin-bottom: 20px;
}

.zoom-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.zoom-overlay::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 2.5px solid #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.zoom-overlay::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 10px), calc(-50% + 10px));
    border-radius: 1px;
    transition: transform 0.3s ease;
}

.main-image-wrapper:hover .zoom-overlay {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.main-image-wrapper:hover .zoom-overlay::before {
    transform: translate(-50%, -50%) scale(1.1);
}

.main-image-wrapper:hover .zoom-overlay::after {
    transform: translate(calc(-50% + 12px), calc(-50% + 12px));
}

.main-image-wrapper:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image-wrapper:hover .main-image {
    transform: scale(1.02);
}

.thumbnail-strip {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail-item {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    width: 80px;
    height: 80px;
    object-fit: cover;
    transition: all 0.2s;
    opacity: 0.6;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: var(--premium-gold);
    opacity: 1;
}

/* Product Info */
.product-info {
    padding-left: 20px;
}

.product-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
    display: block;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--premium-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-price {
    font-size: 1.5rem;
    color: var(--premium-black);
    font-weight: 500;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.product-description {
    font-family: 'Inter', sans-serif;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-order {
    background-color: var(--premium-black);
    color: #fff;
    padding: 15px 40px;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
    flex: 1;
    text-align: center;
    border: 1px solid var(--premium-black);
}

.btn-order:hover {
    background-color: transparent;
    color: var(--premium-black);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    padding: 15px 40px;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #25D366;
}

.btn-whatsapp:hover {
    background-color: transparent;
    color: #25D366;
}

/* Accordion */
.accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
    background: transparent;
}

.accordion-button {
    background: transparent;
    color: var(--premium-black);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 20px 0;
    box-shadow: none !important;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--premium-gold);
}

.accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    transform: none;
    transition: transform 0.3s;
}

.accordion-button:not(.collapsed)::after {
    content: '-';
    transform: none;
}

.accordion-body {
    padding: 0 0 20px 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Related Products */
.related-products-section {
    padding-top: 100px;
    border-top: 1px solid #eee;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 50px;
}

/* Product Card (Copied from Index for consistency) */
.premium-card {
    background: #fff;
    border: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.premium-card:hover {
    transform: translateY(-5px);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    background-color: var(--premium-gray);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-card:hover .card-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-card:hover .card-overlay {
    opacity: 1;
}

.btn-inspect {
    background-color: #fff;
    color: var(--premium-black);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.premium-card:hover .btn-inspect {
    transform: translateY(0);
}

.btn-inspect:hover {
    background-color: var(--premium-black);
    color: #fff;
}

.card-details {
    padding-top: 20px;
    text-align: center;
}

.product-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 5px;
    display: block;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--premium-black);
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
    transition: color 0.3s;
}

.premium-card:hover .product-name {
    color: var(--premium-gold);
}

/* Modal Gallery */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-modal.show {
    display: flex;
    opacity: 1;
    animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.gallery-content {
    position: relative;
    width: 100%;
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    height: 100vh;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    transform: scale(0.95);
}

.gallery-modal.show .modal-image {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #1a1a1a;
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.close-modal:hover {
    color: var(--premium-gold);
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--premium-gold);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.05);
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    z-index: 10003;
    pointer-events: auto;
}

.nav-btn:hover {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    border-color: var(--premium-gold);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

.modal-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(26, 26, 26, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    background: rgba(0, 0, 0, 0.05);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 500;
    z-index: 10004;
    pointer-events: none;
}

/* Modal Zoom Controls - Elegant & Modern */
.zoom-controls {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10002;
}

.zoom-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.zoom-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.zoom-btn:hover::before {
    width: 100%;
    height: 100%;
}

.zoom-btn:hover {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    border-color: var(--premium-gold);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.zoom-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.zoom-icon {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    display: block;
}

.zoom-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.zoom-icon::after {
    content: '';
    width: 6px;
    height: 6px;
    background: currentColor;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(10px, 10px);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.zoom-btn.zoomed .zoom-icon::before {
    border-width: 2.5px;
    width: 18px;
    height: 18px;
}

.zoom-btn.zoomed .zoom-icon::after {
    width: 8px;
    height: 2.5px;
    transform: translate(5px, 9px) rotate(45deg);
    border-radius: 0;
}

.zoom-btn:hover .zoom-icon::before {
    transform: scale(1.15);
}

.zoom-btn:hover .zoom-icon::after {
    transform: translate(11px, 11px) scale(1.1);
}

.zoom-btn.zoomed:hover .zoom-icon::after {
    transform: translate(5px, 9px) rotate(45deg) scale(1.1);
}

.gallery-content {
    position: relative;
    width: 100%;
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.modal-image {
    max-width: 100%;
    height: 100vh;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    transform-origin: center center;
    cursor: pointer;
    opacity: 1;
    filter: brightness(1);
    pointer-events: auto;
}

.modal-image.zoomed {
    cursor: grab;
}

.modal-image.zoomed:active {
    cursor: grabbing;
}

.modal-image.fade-out {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    filter: brightness(0.7);
}

.modal-image.fade-in {
    animation: elegantFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes elegantFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.96) translateY(15px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

.sticky-top-custom {
    z-index: 1;
}

.btn-success-custom {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    height: 48px;
    line-height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   Product Index Page Styles
   ========================================= */

/* Hero Section */
.premium-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.bg-hero-image {
    background-image: url('/images/hero.jpg');
    background-size: cover;
    /* Ensure it covers */
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    animation: fadeUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    opacity: 0.9;
}

.content-padding {
    padding: 80px 0;
}

/* Sidebar Styling */
.sidebar-sticky {
    position: sticky;
    top: 100px;
    padding-right: 20px;
}

.filter-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--premium-black);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

.filter-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: var(--premium-gold);
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-item {
    margin-bottom: 1rem;
}

.filter-link {
    display: flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 8px 0;
}

.filter-link:hover,
.filter-link.active {
    color: var(--luxury-gold);
    padding-left: 10px;
}

.filter-link.active {
    font-weight: 600;
}

.filter-link i {
    font-size: 6px;
    margin-right: 12px;
    opacity: 0.1;
    /* Subdued bullet by default */
    transition: all 0.3s;
    color: var(--luxury-gold);
}

.filter-link.active i,
.filter-link:hover i {
    opacity: 1;
    transform: scale(1.5);
}

/* Custom Checkbox */
.custom-check-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    cursor: pointer;
}

.custom-check-input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

.custom-check-input:checked {
    background-color: var(--premium-black);
    border-color: var(--premium-black);
}

.custom-check-input:checked::after {
    content: '✓';
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

.custom-check-label {
    font-size: 0.95rem;
    color: #444;
    cursor: pointer;
    transition: color 0.3s;
}

.custom-check-wrapper:hover .custom-check-label {
    color: var(--premium-gold);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Toolbar Styling */
.toolbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.grid-toggle-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.2rem;
    padding: 5px 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.grid-toggle-btn:hover,
.grid-toggle-btn.active {
    color: var(--premium-black);
    transform: scale(1.1);
}

.grid-toggle-btn.active {
    color: var(--premium-gold);
}

.sort-wrapper {
    display: flex;
    align-items: center;
}

.mb-0-important {
    margin-bottom: 0px !important;
}

.sort-label {
    font-family: 'Playfair Display', serif;
    margin-right: 10px;
    color: var(--premium-black);
    font-size: 1rem;
}

.sort-select {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 5px 20px 5px 5px;
    font-family: 'Inter', sans-serif;
    color: #555;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23D4AF37%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: 10px auto;
}

.sort-select:focus {
    border-color: var(--premium-gold);
}

/* =========================================
   Cart Page Styles
   ========================================= */

/* Custom Cart Styles */
.cart-product-thumbnail img {
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cart-product-remove .remove {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.cart-product-remove .remove:hover {
    transform: scale(1.2);
}

.quantity {
    display: inline-flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.quantity .qty {
    width: 50px;
    height: 40px;
    line-height: 40px;
    border: 0;
    text-align: center;
    background: transparent;
    font-weight: 600;
}

.quantity .plus,
.quantity .minus {
    width: 40px;
    height: 40px;
    border: 0;
    background: #f1f1f1;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity .plus:hover,
.quantity .minus:hover {
    background: #e1e1e1;
}

.quantity .minus {
    border-right: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.quantity .plus {
    border-left: 1px solid #ddd;
    border-radius: 0 4px 4px 0;
}

/* Loading Spinner */
.cart-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cart-loading-overlay.active {
    display: flex;
}

.cart-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1ABC9C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =========================================
   Login & Register Page Styles
   ========================================= */

.login-section,
.register-section {
    background-image: url('/images/login_bg.jpg');
    /* Fallback or consistent theme image */
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-overlay,
.register-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    backdrop-filter: blur(5px);
}

.login-card,
.register-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 100%;
    z-index: 10;
    animation: fadeUpIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.form-floating>.form-control {
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
}

.form-floating>.form-control:focus {
    border-color: var(--cnvs-themecolor);
    box-shadow: none;
    background-color: #fff;
}

.login-title,
.register-title {
    font-family: 'Playfair Display', serif;
    /* Or system serif */
    letter-spacing: 1px;
}

@keyframes fadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Checkout Page Styles
   ========================================= */

/* Checkout Steps */
.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.checkout-step-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.checkout-step-label {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-progress-bar {
    position: absolute;
    top: 17px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e9ecef;
    z-index: 0;
}

.checkout-step.active .checkout-step-circle {
    background-color: #222;
    color: #fff;
    box-shadow: 0 0 0 5px rgba(34, 34, 34, 0.1);
}

.checkout-step.completed .checkout-step-circle {
    background-color: #198754;
    color: #fff;
}

.checkout-step.pending .checkout-step-circle {
    background-color: #f8f9fa;
    color: #adb5bd;
    border: 2px solid #e9ecef;
}

/* Address Cards */
.address-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #eee;
}

.address-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
    border-color: #ccc;
}

.address-card.selected {
    border-color: #222;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.address-card.selected::after {
    content: '\F633';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    color: #222;
}

.btn-add-address {
    border-style: dashed !important;
    border-width: 2px !important;
    border-color: #dee2e6 !important;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
}

.btn-add-address:hover {
    background-color: #fff;
    border-color: #adb5bd !important;
    color: #222 !important;
}

.custom-radio-group input[type="radio"] {
    display: none;
}

.address-actions {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.address-card:hover .address-actions {
    opacity: 1;
}

/* Payment / Credit Card */
.credit-card-form .form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.card-scene {
    perspective: 1000px;
    height: 200px;
    margin-bottom: 2rem;
}

.credit-card {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(135deg, #222 0%, #444 100%);
    color: white;
    padding: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-chip {
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    border-radius: 5px;
    margin-bottom: 20px;
}

#cardNumber {
    letter-spacing: 2px;
}

/* =========================================
   Order Detail Page Styles
   ========================================= */
.order-steps .step .step-icon {
    border-width: 2px !important;
    transition: all 0.3s ease;
    color: #ccc;
}

.order-steps .step.active .step-icon {
    border-color: #000 !important;
    background-color: #000 !important;
    color: #fff;
}

.order-steps .step.active .small {
    color: #000;
    font-weight: 700;
}

.object-fit-cover {
    object-fit: cover;
}

.color {
    color: #c19a6b;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.order-detail-container {
    padding-bottom: 2rem;
}

.tracking-card {
    border-left: 5px solid #c19a6b !important;
    background: linear-gradient(to right, #ffffff, #fafafa);
}

.tracking-icon-box {
    width: 64px;
    height: 64px;
    background-color: #f8f4ef;
    color: #c19a6b;
    transition: all 0.3s ease;
}

.tracking-card:hover .tracking-icon-box {
    background-color: #c19a6b;
    color: #fff;
    transform: scale(1.05);
}

.cursor-pointer {
    cursor: pointer;
}

.tracking-id {
    transition: color 0.2s ease;
}

.tracking-id:hover {
    color: #c19a6b !important;
}

/* =========================================
   Contact Page Styles
   ========================================= */
.contact-hero {
    padding: 100px 0 60px;
    background-color: var(--cnvs-color-secondary);
    text-align: center;
}

.contact-hero h1 {
    font-family: var(--cnvs-primary-font);
    font-size: 4rem;
    font-weight: 300;
    color: var(--cnvs-themecolor);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-hero p {
    font-family: var(--cnvs-body-font);
    font-size: 1.1rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-info-box:hover {
    transform: translateY(-5px);
}

.contact-info-box i {
    font-size: 2.5rem;
    color: var(--cnvs-themecolor);
    margin-bottom: 25px;
    display: block;
}

.contact-info-box h3 {
    font-family: var(--cnvs-primary-font);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--cnvs-themecolor);
}

.contact-info-box p,
.contact-info-box a {
    font-family: var(--cnvs-body-font);
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
    text-decoration: none;
    display: block;
}

.contact-info-box a:hover {
    color: var(--cnvs-themecolor);
}

.contact-form-wrapper {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 15px 0;
    font-family: var(--cnvs-body-font);
    background: transparent;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--cnvs-themecolor);
    background: transparent;
}

.contact-form .form-label {
    font-family: var(--cnvs-primary-font);
    font-weight: 500;
    color: var(--cnvs-themecolor);
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.submit-btn {
    background-color: var(--cnvs-themecolor);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-family: var(--cnvs-primary-font);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.submit-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    filter: grayscale(1) contrast(1.1);
    transition: filter 0.5s ease;
}

.map-container:hover {
    filter: grayscale(0) contrast(1);
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

/* =========================================
   About Page Styles
   ========================================= */
.about-hero {
    padding: 120px 0 80px;
    background-color: var(--cnvs-color-secondary);
    position: relative;
    overflow: hidden;
}

.about-hero h1 {
    font-family: var(--cnvs-primary-font);
    font-size: 5rem;
    font-weight: 300;
    color: var(--cnvs-themecolor);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-hero .lead {
    font-family: var(--cnvs-body-font);
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
}

.heritage-section {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    font-family: var(--cnvs-primary-font);
    font-size: 2.5rem;
    color: var(--cnvs-themecolor);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--cnvs-themecolor);
}

.about-text {
    font-family: var(--cnvs-body-font);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    font-family: var(--cnvs-primary-font);
    font-size: 3.5rem;
    color: var(--cnvs-themecolor);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--cnvs-body-font);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #999;
}

.craft-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.craft-img-wrapper img {
    transition: transform 0.8s ease;
}

.craft-img-wrapper:hover img {
    transform: scale(1.05);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    padding: 40px;
    background: var(--cnvs-color-secondary);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2rem;
    color: var(--cnvs-themecolor);
    margin-bottom: 20px;
    display: block;
}

.value-item h4 {
    font-family: var(--cnvs-primary-font);
    margin-bottom: 15px;
    color: var(--cnvs-themecolor);
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Order Detail Inline Styles */
.order-progress-bg {
    height: 4px;
    top: 20px;
    z-index: 0;
    background-color: #f0f0f0;
}

.step-wrapper {
    z-index: 1;
    width: 25%;
}

.step-icon-wrapper {
    width: 44px;
    height: 44px;
}

.order-item-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.input-code {
    letter-spacing: 5px;
    font-size: 1.5rem;
}

.craft-img-max-height {
    max-height: 800px;
}

/* Product Image Aspect Ratio Fix */
.product-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

/* Product Variants */
/* Luxury Custom Dropdown */
.luxury-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #333;
    position: relative;
}

.luxury-dropdown-toggle:hover {
    border-color: #d4d4d4;
    background-color: #f9f9f9;
}

.luxury-dropdown-toggle.active,
.luxury-dropdown-toggle.selected {
    border-color: var(--luxury-gold);
}

.luxury-dropdown-toggle.active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.luxury-dropdown-toggle .dropdown-icon {
    font-size: 0.75rem;
    color: #999;
    transition: transform 0.3s ease;
}

.luxury-dropdown-toggle.active .dropdown-icon {
    transform: rotate(180deg);
    color: var(--luxury-gold);
}

.luxury-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-top: none;
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.luxury-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.luxury-dropdown-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.9rem;
    color: #444;
}

.luxury-dropdown-item:hover {
    background-color: #f5f5f5;
    color: #000;
}

.luxury-dropdown-item.active {
    background-color: var(--luxury-soft-bg);
    color: var(--luxury-gold);
    font-weight: 500;
}

.variant-label {
    text-transform: uppercase;
    font-size: 0.75rem !important;
    color: #888 !important;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
    /* Or system serif */
}