/* ==========================================================================
   AURUM LUXURY JEWELRY THEME STYLESHEET
   ========================================================================== */

:root {
    --aurum-gold: #d4af37;
    --aurum-gold-hover: #bda02e;
    --aurum-dark: #111111;
    --aurum-dark-gray: #1e1e1e;
    --aurum-cream: #faf8f5;
    --aurum-light: #ffffff;
    --aurum-muted: #777777;
    --aurum-logo-color: #9d1c5a;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-pink: rgba(222, 74, 142, 0.25);
    --shadow-gold: rgba(212, 175, 55, 0.25);
    --shadow-logo: rgba(157, 28, 90, 0.25);
    --shadow-dark: rgba(0, 0, 0, 0.08);
}

html, body, #wrapwrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Base Styles & Typography */
.aurum-theme {
    font-family: var(--font-body);
    background-color: var(--aurum-cream);
    color: #222222;
    -webkit-font-smoothing: antialiased;

    h1, h2, h3, h4, h5, h6,
    .h1, .h2, .h3, .h4, .h5, .h6,
    .aurum-heading {
        font-family: var(--font-heading);
        font-weight: 700;
        letter-spacing: 0.5px;
        color: var(--aurum-dark);
    }
}

/* Custom Navigation Bar */
.aurum-navbar {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;

    .navbar-brand {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.6rem;
        letter-spacing: 2px;
        color: var(--aurum-dark) !important;
        text-transform: uppercase;

        .brand-accent {
            color: var(--aurum-gold);
        }
    }

    .nav-link {
        font-size: 0.65rem;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 1px;
        color: var(--aurum-dark) !important;
        padding: 0.5rem 0.5rem !important;
        position: relative;
        transition: color 0.3s ease;

        &::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 1px;
            background-color: var(--aurum-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        &:hover::after,
        &.active::after {
            width: 50%;
        }

        &:hover,
        &.active {
            color: var(--aurum-gold) !important;
        }
    }

    .btn-aurum-outline {
        border: 1px solid var(--aurum-gold);
        color: var(--aurum-gold);
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        border-radius: 0;
        padding: 0.6rem 1.5rem;
        transition: all 0.4s ease;

        &:hover {
            background-color: var(--aurum-gold);
            color: var(--aurum-light);
            box-shadow: 0 4px 15px var(--shadow-gold);
        }
    }

    .nav-social-link {
        color: var(--aurum-dark) !important;
        font-size: 1.15rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        
        &:hover {
            color: var(--aurum-gold) !important;
            background-color: rgba(212, 175, 55, 0.08);
            transform: translateY(-1px);
        }
    }
}

/* Hero Section Banner */
.aurum-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--aurum-gold);

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(17, 17, 17, 0.85) 30%, rgba(17, 17, 17, 0.25) 100%);
        z-index: 1;
    }

    .container {
        position: relative;
        z-index: 2;
    }

    .hero-subtitle {
        color: var(--aurum-gold);
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 1rem;
        display: inline-block;
    }

    .hero-title {
        font-size: 4rem;
        font-weight: 800;
        color: var(--aurum-light);
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);

        @media (max-width: 768px) {
            font-size: 2.5rem;
        }
    }

    .hero-desc {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.05rem;
        line-height: 1.8;
        max-width: 600px;
        margin-bottom: 2rem;
    }

    .btn-aurum-gold {
        background-color: var(--aurum-gold);
        color: var(--aurum-light) !important;
        font-weight: 600;
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        border-radius: 0;
        padding: 1rem 2.5rem;
        border: 1px solid var(--aurum-gold);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

        &:hover {
            background-color: transparent;
            border-color: var(--aurum-light);
            box-shadow: 0 8px 25px var(--shadow-gold);
            transform: translateY(-2px);
        }
    }
}

/* Section Header Styles */
.aurum-section-header {
    margin-bottom: 4rem;

    .section-subtitle {
        font-family: var(--font-body);
        font-size: 0.8rem;
        color: var(--aurum-gold);
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 0.5rem;
    }

    .section-title {
        font-size: 2.4rem;
        position: relative;
        padding-bottom: 1rem;
        color: var(--aurum-dark);

        &::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background-color: var(--aurum-gold);
        }
    }
}

/* Category Circle Cards */
.aurum-cat-card {
    text-align: center;
    cursor: pointer;
    text-decoration: none !important;
    display: block;
    padding: 1.5rem;

    .cat-img-wrap {
        width: 170px;
        height: 170px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 1.5rem;
        border: 2px solid rgba(212, 175, 55, 0.2);
        background-color: var(--aurum-light);
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 4px 15px var(--shadow-dark);

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
    }

    .cat-title {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.3rem;
        color: var(--aurum-dark);
        margin-bottom: 0.25rem;
        transition: color 0.3s ease;
    }

    .cat-count {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--aurum-gold);
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    &:hover {
        .cat-img-wrap {
            transform: translateY(-8px);
            border-color: var(--aurum-gold);
            box-shadow: 0 12px 30px var(--shadow-pink);

            img {
                transform: scale(1.08);
            }
        }

        .cat-title {
            color: var(--aurum-gold);
        }
    }
}

/* Custom Product Card & List Items */
.aurum-product-card {
    background-color: var(--aurum-light);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px var(--shadow-dark);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    .product-img-wrap {
        position: relative;
        overflow: hidden;
        background-color: var(--aurum-cream);

        img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--aurum-gold);
            color: var(--aurum-light);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 0.4rem 0.8rem;
            z-index: 2;
        }
    }

    .product-details {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        text-align: center;

        .product-cat {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--aurum-muted);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 0.5rem;
        }

        .product-title {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--aurum-dark);
            margin-bottom: 0.75rem;
            line-height: 1.3;
            text-decoration: none;
            transition: color 0.3s ease;

            &:hover {
                color: var(--aurum-gold);
            }
        }

        .product-price {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--aurum-gold);
            margin-bottom: 1.25rem;
        }

        .btn-add-cart {
            border: 1px solid var(--aurum-dark);
            background-color: transparent;
            color: var(--aurum-dark);
            border-radius: 0;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 0.7rem 1.5rem;
            margin-top: auto;
            transition: all 0.4s ease;

            &:hover {
                background-color: var(--aurum-dark);
                color: var(--aurum-light);
            }
        }
    }

    &:hover {
        transform: translateY(-8px);
        border-color: var(--aurum-gold);
        box-shadow: 0 16px 36px var(--shadow-pink);

        .product-img-wrap img {
            transform: scale(1.06);
        }
    }
}

/* Legacy Story split banner */
.aurum-story-section {
    background-color: var(--aurum-dark);
    color: var(--aurum-light);
    border-top: 2px solid var(--aurum-gold);
    border-bottom: 2px solid var(--aurum-gold);

    .story-img-wrap {
        border: 1px solid rgba(212, 175, 55, 0.3);
        padding: 1rem;
        background-color: var(--aurum-dark-gray);

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }
    }

    .story-content {
        padding: 3rem;

        .story-subtitle {
            color: var(--aurum-gold);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: block;
        }

        .story-title {
            color: var(--aurum-light);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .story-text {
            color: rgba(255, 255, 255, 0.75);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
    }
}

/* Crafting Steps Cards */
.aurum-step-card {
    background-color: var(--aurum-dark-gray);
    color: var(--aurum-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    .step-number {
        font-family: var(--font-heading);
        font-size: 2.8rem;
        color: var(--aurum-gold);
        line-height: 1;
        font-weight: 700;
        margin-bottom: 1rem;
        transition: transform 0.4s ease;
    }

    .step-title {
        font-family: var(--font-heading);
        color: var(--aurum-light);
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .step-desc {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0;
    }

    &:hover {
        transform: translateY(-6px);
        background-color: var(--aurum-dark);
        border-color: var(--aurum-gold);
        box-shadow: 0 12px 30px var(--shadow-pink) !important;

        .step-number {
            transform: scale(1.15) translateX(3px);
        }
    }
}

/* Guarantees Flex Blocks */
.aurum-guarantee-block {
    background-color: var(--aurum-light);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 2rem;
    display: flex;
    align-items: start;
    height: 100%;
    box-shadow: 0 4px 15px var(--shadow-dark);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    .guarantee-icon {
        color: var(--aurum-gold);
        font-size: 2rem;
        margin-right: 1.25rem;
        transition: transform 0.4s ease;
    }

    .guarantee-title {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--aurum-dark);
        margin-bottom: 0.5rem;
    }

    .guarantee-desc {
        font-size: 0.88rem;
        color: var(--aurum-muted);
        line-height: 1.6;
        margin: 0;
    }

    &:hover {
        transform: translateY(-4px);
        border-color: var(--aurum-gold);
        box-shadow: 0 10px 25px var(--shadow-pink);

        .guarantee-icon {
            transform: scale(1.2);
        }
    }
}

/* Call To Action Banner */
.aurum-cta-section {
    background-color: var(--aurum-dark);
    color: var(--aurum-light);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 5rem 0;

    .btn-aurum-gold-fill {
        background-color: var(--aurum-gold);
        color: var(--aurum-light);
        font-weight: 600;
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        border-radius: 0;
        padding: 1rem 2.5rem;
        border: 1px solid var(--aurum-gold);
        box-shadow: 0 4px 12px var(--shadow-gold);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

        &:hover {
            background-color: transparent;
            color: var(--aurum-gold);
            border-color: var(--aurum-gold);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px var(--shadow-pink);
        }
    }
}

/* Form Styles */
.aurum-form {
    background-color: var(--aurum-light);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 3rem;
    box-shadow: 0 8px 30px var(--shadow-dark);

    .form-label {
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--aurum-dark);
    }

    .form-control {
        border-radius: 0;
        border: 1px solid #e0e0e0;
        padding: 0.8rem 1rem;
        font-size: 0.95rem;

        &:focus {
            border-color: var(--aurum-gold);
            box-shadow: 0 0 0 3px var(--shadow-gold);
        }
    }

    textarea.form-control {
        min-height: 120px;
    }

    .btn-aurum-submit {
        background-color: var(--aurum-dark);
        color: var(--aurum-light);
        font-weight: 600;
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        border-radius: 0;
        padding: 1rem;
        width: 100%;
        border: 1px solid var(--aurum-dark);
        transition: all 0.4s ease;

        &:hover {
            background-color: var(--aurum-gold);
            border-color: var(--aurum-gold);
            box-shadow: 0 6px 20px var(--shadow-pink);
        }
    }
}

/* Custom Footer */
.aurum-footer {
    background-color: var(--aurum-dark);
    color: rgba(255, 255, 255, 0.7);
    border-top: 2px solid var(--aurum-gold);
    padding-top: 5rem;

    .footer-title {
        font-family: var(--font-heading);
        color: var(--aurum-light);
        font-size: 1.3rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 2rem;
        position: relative;
        padding-bottom: 0.5rem;

        &::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 1px;
            background-color: var(--aurum-gold);
        }
    }

    .footer-desc {
        font-size: 0.9rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;

        li {
            margin-bottom: 0.75rem;

            a {
                color: rgba(255, 255, 255, 0.7);
                text-decoration: none;
                font-size: 0.9rem;
                transition: color 0.3s ease, padding-left 0.3s ease;

                &:hover {
                    color: var(--aurum-gold);
                    padding-left: 5px;
                }
            }
        }
    }

    .office-info {
        font-size: 0.9rem;
        line-height: 1.8;

        a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;

            &:hover {
                color: var(--aurum-gold);
            }
        }
    }

    .footer-brand {
        background-color: #ffffff;
        border-radius: 25px;
        padding: 8px 20px;
        display: inline-block;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;

        &:hover {
            transform: scale(1.03);
        }

        img {
            display: block;
        }
    }

    .footer-social-link {
        color: #ffffff !important;
        font-size: 1.35rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.03);

        &:hover {
            color: var(--aurum-logo-color) !important;
            border-color: var(--aurum-logo-color);
            background: rgba(157, 28, 90, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px var(--shadow-logo);
        }
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 2rem 0;
        margin-top: 4rem;
        font-size: 0.85rem;
        display: flex;
        justify-content: space-between;
        align-items: center;

        @media (max-width: 768px) {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }

        .footer-bottom-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 1.5rem;

            a {
                color: rgba(255, 255, 255, 0.5);
                text-decoration: none;
                transition: color 0.3s ease;

                &:hover {
                    color: var(--aurum-gold);
                }
            }
        }
    }
}

/* Responsive Navbar for Medium-Large Screens */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .aurum-navbar .navbar-brand {
        font-size: 1.15rem !important;
        letter-spacing: 0.5px !important;
        margin-right: 0.5rem !important;
    }
    .aurum-navbar .nav-link {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
    }
    .aurum-navbar .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media (min-width: 1400px) and (max-width: 1599.98px) {
    .aurum-navbar .navbar-brand {
        font-size: 1.35rem !important;
        letter-spacing: 1px !important;
        margin-right: 1rem !important;
    }
    .aurum-navbar .nav-link {
        padding: 0.5rem 1.1rem !important;
        font-size: 0.74rem !important;
        letter-spacing: 0.8px !important;
    }
    .aurum-navbar .container-fluid {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

@media (min-width: 1600px) {
    .aurum-navbar .navbar-brand {
        font-size: 1.6rem !important;
        letter-spacing: 2px !important;
        margin-right: 2rem !important;
    }
    .aurum-navbar .nav-link {
        padding: 0.5rem 1.4rem !important;
        font-size: 0.78rem !important;
        letter-spacing: 1px !important;
    }
    .aurum-navbar .container-fluid {
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }
}

@media (min-width: 1200px) {
    .aurum-navbar .navbar {
        flex-wrap: nowrap !important;
    }
    .aurum-navbar .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .aurum-navbar .nav-item {
        flex-shrink: 0 !important;
    }
}

/* Mobile/Vertical Navbar Styling for Collapse View */
@media (max-width: 1199.98px) {
    .aurum-navbar .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.74rem !important;
        text-align: left !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .aurum-navbar .navbar-nav {
        margin-top: 1rem !important;
        gap: 0.25rem !important;
        align-items: stretch !important;
        width: 100% !important;
    }
}

/* Hide Odoo Brand Promotion and default copyright bottom bars and remove their space */
.o_brand_promotion,
.o_footer_copyright {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: hidden !important;
    border: none !important;
}

/* Premium Carousel Styling for Aurum Theme */
.aurum-theme .carousel-indicators [data-bs-target] {
    background-color: var(--aurum-gold);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.aurum-theme .carousel-indicators .active {
    opacity: 1;
    background-color: var(--aurum-gold);
    border-color: var(--aurum-light);
    transform: scale(1.2);
}
.aurum-theme .carousel-control-prev,
.aurum-theme .carousel-control-next {
    width: 5%;
    z-index: 10;
}
.aurum-theme .carousel-control-prev-icon,
.aurum-theme .carousel-control-next-icon {
    width: 2.8rem;
    height: 2.8rem;
    background-color: rgba(17, 17, 17, 0.6);
    border: 1px solid var(--aurum-gold);
    border-radius: 50%;
    padding: 10px;
    background-size: 40%;
    transition: all 0.3s ease;
}
.aurum-theme .carousel-control-prev-icon:hover,
.aurum-theme .carousel-control-next-icon:hover {
    background-color: var(--aurum-gold);
    border-color: var(--aurum-light);
    box-shadow: 0 0 15px var(--shadow-gold);
}
.white{
    color: #ffffff;
}

/* Responsive Logo Sizing */
.aurum-logo {
    height: 94px !important;
    max-height: 94px !important;
    width: auto !important;
    transition: all 0.3s ease;
}

.aurum-footer-logo {
    height: 80px !important;
    max-height: 80px !important;
    width: auto !important;
    display: block;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .aurum-logo {
        height: 86px !important;
        max-height: 86px !important;
    }
}

@media (max-width: 768px) {
    .aurum-logo {
        height: 76px !important;
        max-height: 76px !important;
    }
    .aurum-footer-logo {
        height: 70px !important;
        max-height: 70px !important;
    }
}

@media (max-width: 480px) {
    .aurum-logo {
        height: 68px !important;
        max-height: 68px !important;
    }
}
