/* 
JLJ Jewellers - Main Stylesheet
Colors:
- Primary: Royal Navy Blue (#0D1B2A) – elegant for header and buttons
- Accent: Shimmering Gold (#D4AF37) – for pricing, highlights, and icons
- Background: Pearl White (#FDFCFB) – clean and sophisticated
- Highlights: Rich Wine/Burgundy (#8A1538) – perfect for banners and calls to action
Typography:
- Headings: Playfair Display (luxury serif)
- Body: Poppins (modern sans-serif)
*/

/* ===== Variables ===== */
:root {
    /* Colors */
    --primary: #0D1B2A;
    --primary-light: #1D3B5A;
    --primary-dark: #071018;
    --accent: #D4AF37;
    --accent-light: #E6D69D;
    --accent-dark: #A88C2A;
    --background: #FDFCFB;
    --background-alt: #F7F5F0;
    --highlight: #8A1538;
    --highlight-light: #B01C4A;
    --highlight-dark: #6A102A;
    --light: #FFFFFF;
    --dark: #1A1A1A;
    --gray: #717171;
    --light-gray: #E5E5E5;

    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.4rem;
    --spacing-sm: 0.8rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;

    /* Box Shadow */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 6px 24px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 16px rgba(212, 175, 55, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--background);
    overflow-x: hidden;
    background-image: linear-gradient(to bottom, var(--background) 0%, var(--background-alt) 100%);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition-fast);
    position: relative;
}

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font-family: var(--body-font);
    font-size: 1rem;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

h1 {
    font-size: 2.2rem;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    width: 70%;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
    bottom: -5px;
    left: 0;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-accent {
    color: var(--accent);
}

.text-highlight {
    color: var(--highlight);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    transition: all 0.3s;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    color: var(--light);
    background-color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: 0 0 0 rgba(212, 175, 55, 0);
    transition: all 0.3s ease;
}

.btn-primary::before {
    background-color: var(--accent);
}

.btn-primary:hover {
    color: var(--primary);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

/* Gold glow animation for buttons */
@keyframes goldGlow {
    0% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }

    100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    }
}

.btn-glow {
    animation: goldGlow 2s infinite;
}

.btn-secondary {
    color: var(--primary);
    background-color: var(--light);
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.btn-secondary::before {
    background-color: var(--accent);
}

.btn-secondary:hover {
    color: var(--primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

/* ===== Header Styles ===== */
header {
    background-color: var(--light);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-bar {
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    color: var(--light);
    padding: 6px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: var(--light);
    font-size: 0.9rem;
}

.contact-info a:hover {
    color: var(--accent);
}

.metal-rates {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px var(--spacing-sm);
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
}

.logo-image {
    width: 36px;
    height: 36px;
    margin-right: 8px;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--primary);
    transition: var(--transition-fast);
}

.logo a:hover {
    color: var(--accent);
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    margin: 0;
}

.logo h1 span {
    color: var(--accent);
}

/* Header right section - combining nav and icons */
.header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.desktop-nav {
    margin-right: 15px;
}

.desktop-nav ul {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.desktop-nav ul li a {
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.desktop-nav ul li a:hover::after,
.desktop-nav ul li a.active::after {
    width: 100%;
}

.desktop-nav ul li a.active {
    color: var(--accent);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background-color: var(--light);
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.icon-btn:hover {
    color: var(--accent);
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--light);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    display: none;
}

.mobile-nav.show {
    display: flex;
}

.mobile-nav ul {
    display: flex;
    width: 100%;
    justify-content: space-around;
}

.mobile-nav ul li {
    flex: 1;
}

.mobile-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    color: var(--primary);
    font-size: 0.8rem;
    text-align: center;
}

.mobile-nav ul li a i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.mobile-nav ul li a.active {
    color: var(--accent);
}

.mobile-cart-count {
    position: absolute;
    top: 5px;
    right: 50%;
    transform: translateX(8px);
    width: 18px;
    height: 18px;
    background-color: var(--highlight);
    color: var(--light);
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Footer Styles ===== */
footer {
    background: linear-gradient(to bottom, var(--primary-light), var(--primary));
    color: var(--light);
    padding-top: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1573408301185-9146fe634ad0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.footer-logo-image {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
}

.footer-logo h2 {
    font-size: 1.6rem;
    color: var(--light);
    margin-bottom: 5px;
}

.footer-logo h2 span {
    color: var(--accent);
}

.footer-logo p {
    color: var(--light-gray);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.footer-column h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--light);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent);
    opacity: 1;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info li i {
    color: var(--accent);
    margin-right: 10px;
    margin-top: 5px;
}

.contact-info li a {
    color: var(--light);
    opacity: 0.8;
    transition: all 0.3s ease;
    text-decoration: none;
    flex: 1;
}

.contact-info li a:hover {
    color: var(--accent);
    opacity: 1;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-icon:hover::before {
    transform: translateY(0);
}

.social-icon:hover {
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon i {
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.social-icon:nth-child(1):hover {
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.4);
}

.social-icon:nth-child(2):hover {
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.4);
}

.social-icon:nth-child(3):hover {
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.copyright {
    color: var(--light);
    opacity: 0.8;
    font-size: 0.9rem;
    text-align: center;
}

.payment-methods {
    max-width: 200px;
}

.payment-methods img {
    width: 100%;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

/* ===== Form Elements ===== */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    background-color: var(--light);
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* ===== Section Styles ===== */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-xs);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--accent);
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Newsletter Section ===== */
.newsletter-section {
    background-color: var(--primary);
    padding: var(--spacing-lg) 0;
}

.newsletter-content {
    text-align: center;
    color: var(--light);
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--light);
    margin-bottom: var(--spacing-xs);
}

.newsletter-content p {
    color: var(--light-gray);
    margin-bottom: var(--spacing-md);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}

.newsletter-form button {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* ===== Responsive Styles ===== */
/* Improve responsive design for all screen sizes */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-xs);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .desktop-nav ul {
        gap: 15px;
    }

    .desktop-nav ul li a {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .header-right {
        justify-content: flex-end;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav.show {
        display: flex;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calculator-container {
        grid-template-columns: 1fr;
    }

    .calculator-card {
        grid-template-columns: 1fr;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
    }

    .contact-info {
        justify-content: center;
    }

    .metal-rates {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 8px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .top-bar .container {
        padding: 3px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .metal-rates {
        flex-wrap: wrap;
        justify-content: center;
    }

    .metal-rates span {
        margin: 2px 5px;
        font-size: 0.8rem;
    }

    .main-header .container {
        padding: 8px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .header-icons {
        gap: 8px;
    }

    .icon-btn {
        width: 28px;
        height: 28px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    .product-card {
        margin-bottom: 12px;
    }

    .product-img {
        height: 180px;
    }

    .rates-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Product Cards with Glassmorphism ===== */
.product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: var(--spacing-sm);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(145deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    z-index: 2;
}

.product-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    transition: bottom 0.3s ease;
    z-index: 2;
}

.product-card:hover .product-actions {
    bottom: 0;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    border: 1px solid var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.product-info {
    padding: var(--spacing-sm);
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.product-name {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.product-price {
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-rating {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Product grid layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Notifications ===== */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
    border-left: 4px solid var(--accent);
}

.notification.active {
    transform: translateY(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.notification-content span {
    font-size: 0.95rem;
    color: var(--dark);
}

.notification-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
    transition: color 0.2s ease;
}

.notification-close:hover {
    color: var(--dark);
}

.notification.success {
    border-left-color: #4CAF50;
}

.notification.error {
    border-left-color: #F44336;
}

.notification.info {
    border-left-color: #2196F3;
}

.notification.warning {
    border-left-color: #FF9800;
}

@media (max-width: 576px) {
    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

/* Additional responsive styles */
@media (max-width: 992px) {
    .page-title h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        padding: var(--spacing-sm) 0;
    }

    .page-title h1 {
        font-size: 1.8rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title p {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .newsletter-content h2 {
        font-size: 1.5rem;
    }

    .newsletter-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        padding: var(--spacing-xs) 0;
    }

    .page-title h1 {
        font-size: 1.6rem;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }

    .section-title h2 {
        font-size: 1.3rem;
    }

    .section-title p {
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }

    .newsletter-content h2 {
        font-size: 1.3rem;
    }

    .newsletter-content p {
        font-size: 0.8rem;
    }

    .footer-logo h2 {
        font-size: 1.4rem;
    }

    .footer-column h3 {
        font-size: 1.1rem;
    }

    .footer-column ul li a,
    .contact-info li {
        font-size: 0.85rem;
    }

    .copyright {
        font-size: 0.75rem;
    }

    .payment-methods img {
        max-width: 180px;
    }
}