/* Modern Professional Theme for RClothing */

/* CSS Variables for consistent theming */
:root {
    --primary-color: #2c1810;
    --secondary-color: #8B0233;
    --accent-color: #d4af37;
    --light-gold: #f4e4bc;
    --dark-gold: #b8860b;
    --text-dark: #2c1810;
    --text-light: #f8f9fa;
    --text-muted: #6c757d;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    --gradient-primary: linear-gradient(135deg, #2c1810 0%, #8B0233 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    --gradient-hero: linear-gradient(135deg, rgba(44,24,16,0.9) 0%, rgba(139,2,51,0.8) 100%);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-light);
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--gradient-primary);
}

.btn-outline-primary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
    background: var(--bg-white);
}

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

.card-img-top {
    transition: var(--transition);
    height: 250px;
    object-fit: cover;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.dropdown-menu {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    padding: 1rem;
    margin-top: 0.5rem;
    animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Product Grid */
.product-grid {
    padding: 4rem 0;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    margin-bottom: 2rem;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 24, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

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

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

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer h1, .footer h2 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Newsletter */
.newsletter-section {
    background: var(--gradient-gold);
    padding: 3rem 0;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow-light);
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

.newsletter-form .btn {
    border-radius: var(--border-radius);
    padding: 1rem 2rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .product-grid {
        padding: 2rem 0;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .product-image {
        height: 250px;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-gold {
    background: var(--gradient-gold);
}

/* Razorpay Pages Styles */
.contact-header-section,
.shipping-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.contact-card,
.shipping-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.contact-card:hover,
.shipping-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.info-section {
    margin-bottom: 2rem;
}

.info-section h3 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h3 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.contact-method {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.support-hours {
    background: var(--bg-light) !important;
    border: 1px solid var(--accent-color);
    border-radius: var(--border-radius);
}

.contact-sidebar .card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

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

.quick-actions .btn {
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.quick-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

.tracking-info {
    background: var(--bg-light) !important;
    border: 1px solid var(--accent-color);
    border-radius: var(--border-radius);
}

.policy-footer {
    border-top: 2px solid var(--accent-color);
    padding-top: 1rem;
}

/* Enhanced Cards for Policy Pages */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

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

.card.bg-light {
    background: var(--bg-light) !important;
    border: 1px solid rgba(0,0,0,0.05);
}

.card.bg-primary {
    background: var(--gradient-primary) !important;
    border: none;
}

/* Responsive Enhancements for Policy Pages */
@media (max-width: 768px) {
    .contact-card,
    .shipping-card {
        padding: 2rem !important;
    }
    
    .contact-method {
        padding: 0.75rem;
    }
    
    .info-section h3,
    .policy-section h3 {
        font-size: 1.25rem;
    }
    
    .quick-actions .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-card,
    .shipping-card {
        padding: 1.5rem !important;
    }
    
    .contact-method {
        padding: 0.5rem;
    }
    
    .info-section h3,
    .policy-section h3 {
        font-size: 1.1rem;
    }
    
    .quick-actions .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* Footer Links Enhancement */
.footer-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 0.25rem 0;
    position: relative;
}

.footer-link:hover {
    color: var(--accent-color) !important;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.footer-link:hover::before {
    width: 5px;
}

/* Footer Logo */
.footer-logo-img {
    max-height: 60px;
    width: auto;
    filter: brightness(1.2);
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.4);
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.contact-item i {
    width: 20px;
    text-align: center;
}

/* Social Links */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    margin: 0 0.5rem;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

/* Newsletter Form */
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: var(--text-light);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 1px solid var(--accent-color);
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-gold);
    border-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

.shadow-custom {
    box-shadow: var(--shadow-medium);
}

.rounded-custom {
    border-radius: var(--border-radius);
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-actions .btn {
    margin: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.hero-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Store Section Styles */
.store-section {
    background: var(--bg-light);
}

.store-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.store-image-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 24, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.store-image-container:hover .store-overlay {
    opacity: 1;
}

.store-details {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.store-details:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

/* About Section Styles */
.about-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-overlay {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 4rem 0;
}

.about-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.about-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.feature-item {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

/* Footer Styles */
.footer-logo-img {
    width: 200px;
    height: auto;
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

/* Product Grid Enhancements */
.products-section {
    background: var(--bg-light);
}

.empty-state {
    padding: 4rem 2rem;
    text-align: center;
}

.empty-state i {
    opacity: 0.5;
}

/* Breadcrumb Styles */
.breadcrumb-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Enhanced Product Cards */
.product-card {
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 24, 16, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    pointer-events: none;
}

.product-card:hover .product-overlay {
    opacity: 1;
    pointer-events: auto;
}

.product-overlay .btn {
    pointer-events: auto;
    z-index: 3;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* Newsletter Form Enhancements */
.newsletter-form .form-control {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50px 0 0 50px;
    padding: 1rem 1.5rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
    font-weight: 600;
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: var(--text-dark);
}

.newsletter-form .btn:hover {
    background: var(--dark-gold);
    border-color: var(--dark-gold);
    transform: translateY(-2px);
}

/* Enhanced Hero Carousel */
.hero-carousel-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-carousel-container {
    height: 100%;
    position: relative;
}

.hero-swiper {
    height: 100%;
    width: 100%;
}

.hero-slide {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-actions {
    margin-top: 2rem;
}

.hero-nav-next,
.hero-nav-prev {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-nav-next:hover,
.hero-nav-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-pagination {
    bottom: 30px;
}

.hero-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Enhanced Header Styles */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.logo-wrapper {
    position: relative;
    margin-right: 15px;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.logo-wrapper:hover .logo-glow {
    opacity: 1;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: -5px;
    letter-spacing: 0.5px;
}

/* Enhanced Footer Styles */
.enhanced-footer {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.enhanced-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.3;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.footer-logo-small:hover {
    transform: rotate(360deg);
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.footer-highlights {
    margin-top: 2rem;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.highlight-item {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Enhanced Navigation */
.navbar-nav .nav-link {
    position: relative;
    font-weight: 600;
    padding: 0.75rem 1.5rem !important;
    margin: 0 0.5rem;
    border-radius: 25px;
    transition: var(--transition);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 25px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.navbar-nav .nav-link:hover::before {
    opacity: 0.1;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

/* Enhanced Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--bg-white);
    box-shadow: var(--shadow-light);
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Enhanced Buttons */
.btn {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

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

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Enhanced Forms */
.form-control {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    background: var(--bg-white);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-actions .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .store-details {
        margin-top: 2rem;
    }
    
    .about-content {
        margin: 1rem;
        padding: 2rem !important;
    }
    
    .footer-logo-img {
        width: 150px;
    }
    
    .footer-title {
        font-size: 2rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1rem;
    }
    
    .brand-tagline {
        display: none;
    }
    
    .hero-nav-next,
    .hero-nav-prev {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .product-image {
        height: 250px;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 50px;
        margin-bottom: 0.5rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
        margin: 0.25rem 0;
    }
}

/* Cart Page Styles */
.cart-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

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

.cart-item-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.cart-item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-color);
}

.cart-item-image img {
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.cart-item-image:hover img {
    transform: scale(1.05);
}

.quantity-input {
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.quantity-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

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

.empty-cart-icon i {
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

/* Wishlist Page Styles */
.wishlist-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.wishlist-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

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

.wishlist-item-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.wishlist-item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-color);
}

.wishlist-item-image img {
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.wishlist-item-image:hover img {
    transform: scale(1.05);
}

.wishlist-item-actions .btn {
    margin: 0.25rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.wishlist-item-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

.empty-wishlist {
    padding: 4rem 2rem;
    text-align: center;
}

.empty-wishlist-icon i {
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

/* Product Details Page Styles */
.product-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.product-swiper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.product-image-slide img {
    transition: var(--transition);
}

.product-swiper:hover .product-image-slide img {
    transform: scale(1.02);
}

.product-nav-next,
.product-nav-prev {
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.product-nav-next:hover,
.product-nav-prev:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: scale(1.1);
}

.product-pagination .swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    transition: var(--transition);
}

.product-pagination .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.product-info-container {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

.product-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Enhanced Form Controls */
.form-control {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    transition: var(--transition);
    background: var(--bg-white);
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    background: var(--bg-white);
}

/* Enhanced Buttons for Product Details */
.btn-group .btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 2rem;
    transition: var(--transition);
}

.btn-group .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

/* Product Details Page Enhancements */
.color-option {
    position: relative;
    display: inline-block;
    margin: 0.25rem;
}

.color-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.color-label {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    text-align: center;
    min-width: 80px;
}

.color-option input[type="radio"]:checked + .color-label {
    background: var(--secondary-color);
    color: var(--text-light);
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.color-option:hover .color-label {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.size-option {
    position: relative;
    display: inline-block;
}

.size-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.size-label {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
    min-width: 60px;
}

.size-option input[type="radio"]:checked + .size-label {
    background: var(--secondary-color);
    color: var(--text-light);
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.size-option:hover .size-label {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

.quantity-input {
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.quantity-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.stock-display {
    padding: 0.5rem;
    border-radius: var(--border-radius);
    background: var(--bg-light);
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-actions .btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 1rem 2rem;
    transition: var(--transition);
}

.product-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

/* Size Chart Modal Enhancements */
#sizeChartModal {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    background: var(--gradient-primary);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body table {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.modal-body th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.modal-footer {
    background: var(--gradient-primary);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* Product Information Sections */
.product-info-section {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin: 2rem 0;
    overflow: hidden;
}

.product-info-section h4 {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 1rem 1.5rem;
    margin: 0;
    font-weight: 600;
}

.product-info-section .container {
    padding: 2rem;
}

.product-info-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Enhanced Badges */
.badge {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bg-primary {
    background: var(--secondary-color) !important;
}

.badge.bg-secondary {
    background: var(--text-muted) !important;
}

/* Loading States */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: var(--border-radius);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(139, 2, 51, 0.1);
    border-left: 4px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Additional Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: var(--shadow-medium);
}

.rounded-custom {
    border-radius: var(--border-radius);
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-gold {
    background: var(--gradient-gold);
}

/* Razorpay Pages Styles */
.contact-header-section,
.shipping-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.contact-card,
.shipping-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.contact-card:hover,
.shipping-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.info-section {
    margin-bottom: 2rem;
}

.info-section h3 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h3 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.contact-method {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.support-hours {
    background: var(--bg-light) !important;
    border: 1px solid var(--accent-color);
    border-radius: var(--border-radius);
}

.contact-sidebar .card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

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

.quick-actions .btn {
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.quick-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

.tracking-info {
    background: var(--bg-light) !important;
    border: 1px solid var(--accent-color);
    border-radius: var(--border-radius);
}

.policy-footer {
    border-top: 2px solid var(--accent-color);
    padding-top: 1rem;
}

/* Enhanced Cards for Policy Pages */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

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

.card.bg-light {
    background: var(--bg-light) !important;
    border: 1px solid rgba(0,0,0,0.05);
}

.card.bg-primary {
    background: var(--gradient-primary) !important;
    border: none;
}

/* Responsive Enhancements for Policy Pages */
@media (max-width: 768px) {
    .contact-card,
    .shipping-card {
        padding: 2rem !important;
    }
    
    .contact-method {
        padding: 0.75rem;
    }
    
    .info-section h3,
    .policy-section h3 {
        font-size: 1.25rem;
    }
    
    .quick-actions .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-card,
    .shipping-card {
        padding: 1.5rem !important;
    }
    
    .contact-method {
        padding: 0.5rem;
    }
    
    .info-section h3,
    .policy-section h3 {
        font-size: 1.1rem;
    }
    
    .quick-actions .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* Footer Links Enhancement */
.footer-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 0.25rem 0;
    position: relative;
}

.footer-link:hover {
    color: var(--accent-color) !important;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.footer-link:hover::before {
    width: 5px;
}

/* Footer Logo */
.footer-logo-img {
    max-height: 60px;
    width: auto;
    filter: brightness(1.2);
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.4);
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.contact-item i {
    width: 20px;
    text-align: center;
}

/* Social Links */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    margin: 0 0.5rem;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

/* Newsletter Form */
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: var(--text-light);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 1px solid var(--accent-color);
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-gold);
    border-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}

/* Address Page Styles */
.address-header-section {
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.address-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.address-item {
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.address-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.address-actions {
    opacity: 0;
    transition: var(--transition);
}

.address-item:hover .address-actions {
    opacity: 1;
}

.cart-summary-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.empty-address {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    border: none;
}

.modal-header {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body .form-control {
    border-radius: var(--border-radius);
    border: 2px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-body .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Address Page */
@media (max-width: 768px) {
    .address-actions {
        position: static !important;
        opacity: 1;
        margin-top: 1rem;
    }
    
    .address-item {
        padding: 1rem;
    }
    
    .cart-summary-card {
        margin-top: 2rem;
    }
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: var(--accent-color) !important;
    border: 2px solid var(--dark-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.newsletter-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.newsletter-section h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.newsletter-section p {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.newsletter-form .form-control {
    background: var(--bg-white);
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    border-radius: 50px 0 0 50px;
    font-weight: 500;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 2, 51, 0.25);
    color: var(--text-dark);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Cart and Wishlist Badges */
.cart-badge, .wishlist-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    transform: none !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    min-width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.25rem 0.5rem !important;
    z-index: 10 !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    animation: pulse 2s infinite !important;
}

.cart-badge:hover, .wishlist-badge:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

/* Ensure badges are always visible */
.navbar-actions .btn {
    overflow: visible !important;
    margin-right: 0.5rem !important;
}

.navbar-actions .btn:last-child {
    margin-right: 0 !important;
}
