/* LUXURY DETAILS SHORTCODE STYLES */

:root {
    --shifman-gold: #B8A686;    /* Premium Accent */
    --shifman-oxblood: #2c1011; /* Heritage Anchor (Maroon) */
    --shifman-rose: #a57578;    /* Soft Modern Accent (Pink) */
    --shifman-parchment: #e3dfd9;/* Soft Neutral Base */
    --shifman-charcoal: #231f1f;/* Modern Readable Text */
    --shifman-bone: #eaded7;     /* Divider / Hover Neutral */
}

/* --- GLOBAL WRAPPER --- */
.luxury-details-wrapper {
    background: radial-gradient(circle, #f2ece4 0%, var(--shifman-parchment) 100%);
    padding: 60px 20px;
    width: 100%;
}

.luxury-details-container {
    max-width: 1200px;
    margin: 0 auto;
    /* DOUBLE BORDER: Gold outside, Oxblood inside for a "framed" feel */
    border: 1px solid var(--shifman-gold);
    outline: 8px solid rgba(184, 166, 134, 0.05); /* Soft outer glow */
    padding: 80px 60px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    background-color: #FFFFFF;
    box-shadow: 0 25px 50px rgba(44, 16, 17, 0.08);
}

/* --- COLUMNS --- */
.luxury-col {
    flex: 1;
}

.luxury-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Shifts content to the top */
    padding-top: 10px;           /* Fine-tune the exact starting position */
}

.luxury-divider {
    width: 1px;
    background: var(--shifman-gold);
    opacity: 0.8;
    align-self: stretch;
}

.luxury-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* --- INTEGRATED BRANDING HEADER --- */
.shifman-branding-header {
    display: flex;
    flex-direction: row;
    gap: 22px;
    margin-top: -60px; /* Pulls the monogram/name higher into the white space */
    margin-bottom: 50px;
}

.shifman-monogram {
    width: 25px; /* Scaled for elegance */
    height: auto;
    /* CSS Filter to achieve #B8A46B from a black SVG source */
    filter: invert(72%) sepia(13%) saturate(763%) hue-rotate(9deg) brightness(91%) contrast(85%);
}

.shifman-brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600; /* Semibold */
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4a3633;
}

/* --- TYPOGRAPHY --- */

.luxury-heading {
    font-family: 'Playfair Display', serif;
    color: #4a3633;
    font-size: clamp(38px, 5vw, 54px);
    line-height: 1.1;
    margin-bottom: 50px;
    position: relative;
    letter-spacing: -0.01em;
}

/* Use Italics for "Luxury" */
.luxury-heading span.italic-accent {
    color: var(--shifman-gold);
    font-style: italic;
    font-weight: 400;
    text-shadow: 0.5px 0.5px 0px rgba(255,255,255,0.2);
}

/* Refined Gold Underline */
.luxury-heading::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100px;
    height: 3px;
    background: #B8A686;
}

.luxury-intro {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--shifman-charcoal);
}

.luxury-intro strong {
    color: var(--shifman-oxblood);
}

.luxury-row {
    padding-bottom: 25px;
    border-bottom: 1px solid var(--shifman-parchment);
}

.luxury-row p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--shifman-charcoal);
    padding-top: 10px;
}

/* --- NEW CTA LINK STYLES --- */
.luxury-link-cta {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--shifman-gold);
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 6p;
}

.luxury-link-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px; /* Short line for premium look */
    height: 2px;
    background-color: var(--shifman-gold); /* Pink accent line */
    transition: width 0.4s ease;
    z-index: 1;
}

.luxury-link-cta:hover {
    color: var(--shifman-rose);
}

.luxury-link-cta:hover::after {
    background-color: var(--shifman-rose);
    width: 100%; /* Line grows to full width on hover */
}

/* --- FOOTER --- */
.luxury-footer {
    color: var(--shifman-oxblood);
    text-align: center;
    padding-top: 10px;
}

.luxury-origin {
    color: var(--shifman-oxblood);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.luxury-location {
    color: var(--shifman-oxblood);
    font-style: italic;
    font-size: 14px;
}

/* --- RESPONSIVE LOGIC --- */

/* Hidden by default */
.luxury-mobile-ctas {
    display: none;
}

@media (max-width: 1024px) {
    .luxury-details-container {
        flex-direction: column;
        padding: 100px;
        gap: 40px;
    }

    .luxury-divider {
        width: 100%;
        height: 1px;
    }
}

@media (max-width: 768px) {
    /* REMOVE TEXT CONTENT ON MOBILE */
    .luxury-details-container {
        padding: 80px 60px;
    }

    .luxury-details-static {
        display: none !important;
    }

    /* SHOW BUTTONS ONLY */
    .luxury-mobile-ctas {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-bottom: 20px;
    }

    /* Outlined Brand Buttons */
    .luxury-mobile-ctas .dm-btn-outline {
        display: block;
        text-align: center;
        padding: 16px;
        border: 1px solid #1a0f0d;
        color: #1a0f0d;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .luxury-footer {
        border-top: 1px solid #eee;
        padding-top: 25px;
    }
}

.luxury-bg {
    background-color: #f4f1ea; 
    position: relative;
    overflow: hidden;
}

.luxury-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.15; /* Keep it very faint */
    filter: url(#noiseFilter);
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    /* Center the branding header */
    .shifman-branding-header {
        flex-direction: column; /* Stack S and Text vertically */
        align-items: center;    /* Center them horizontally */
        text-align: center;
        gap: 8px;               /* Tighter gap for mobile */
        margin-bottom: 30px;    /* Breathing room before the big title */
    }

    .shifman-monogram {
        width: 28px;            /* Slightly smaller for mobile scales */
    }

    .shifman-brand-name {
        font-size: 13px;        /* Slightly more delicate text */
        letter-spacing: 0.2em;  /* Keep the wide tracking for luxury feel */
    }

    /* Ensure the main heading and intro text also center to match */
    .luxury-heading, .luxury-intro {
        text-align: center;
    }

    /* Shift the gold underline to the center */
    .luxury-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}