.data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.data-item {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    text-align: center;
}

.data-item img {
    width: 150px; 
    height: auto;
    margin-bottom: 8px;
}

.data-item span {
    font-family: coperplate;
    font-size: 20px;
    color: #858585;
}
.entry-span {
    font-family: copperplate;
    font-size: 10px;
}

.specs-container {
    max-width: 400px; /* Adjust this to control how wide the table gets */
    margin: 0 auto;   /* THIS CENTERS THE BLOCK ON MOBILE/DESKTOP */
    padding: 0 15px;  /* Adds breathing room on small screens */
}

.specs-table {
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
    font-size: 14px;
}

.spec-row {
    display: flex;
    justify-content: space-between; /* Pushes label to left, value to right */
    padding: 10px 0;
    border-bottom: 1px solid #eee; /* Adds a nice separator line */
}

.spec-label {
    color: #666;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    
    max-width: 400px;  
    margin: 20px auto 0 auto; 
    width: 90%; /* Ensures it fits nicely on very small mobile screens */
}






h6.desk {
    font-size: 18px;
    font-family: copperplate;
    margin-top: 0;
    margin-bottom: 20px;
}

.product-info-panel {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-family: copperplate;
}


.banner {
    height: 100px;
    width: 100vw;
    background-color: #eff3e9;
}

p.banner-text {
    padding-top: 35px;
    margin-top: 0;
    text-align: center;
}

details {
    border-bottom: 1px solid #d1d1d1;
    padding: 24px 0;
}

summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    /* Removed text-transform: uppercase */
    font-weight: 400;
    text-align: left; /* Ensures question is on the left */
}

/* Custom arrow icon */
summary::after {
    content: '+'; /* Cartier often uses a simple plus/minus or a thin chevron */
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: '—'; /* Changes to a minus when open */
    transform: rotate(180deg);
}

.content {
    padding-top: 16px;
    text-align: left;
    max-width: 70ch;
    
    /* The fix for small letters */
    text-transform: none; 
    font-variant: normal;
    font-family: Arial, sans-serif; /* Use a font that supports lowercase */
    
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Removes default browser markers */
summary::-webkit-details-marker {
    display: none;
}

.faq {
    max-width: 900px;
    margin: 40px auto;
    color: #1a1a1a;
}

.delivery-banner {
    justify-content: center;
    display: grid;
}


  .spec-row {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        transition: background-color 0.2s;
    }

    .spec-row:hover {
        background-color: #fafafa; /* Subtle hover effect like luxury sites */
    }

    .spec-label {
        color: #666; /* Muted grey for labels */
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 0.5px;
        font-family: copperplate;
    }

    .spec-value {
        color: #000;
        font-weight: 500;
        text-align: right;
        font-family: copperplate;
    }

    /* Remove the default arrow if you want it to look cleaner */
    summary {
        list-style: none;
    }
    summary::-webkit-details-marker {
        display: none;
    }

    .packaging-1 {
        width: 100vw;
    }
    .vanity-space {
        height: 300px;
        width: 40vw;
        background-color: #f3f3f3;
    }
    .packaging-block{
        width: 55vw;
    }
    img.box {
        height: 300px;
    }

    h2.packing-h2 {
        text-align: center;
        font-family: copperplate;
        margin-top: 80px;
        color: #0023ad;
        margin-top: 0;
    }

    p.packing-p {
        place-self: center;
        font-family: copperplate;
        width: 80%;
        color: #0023ad;
    }

@media(max-width: 768px){
    .box{
        display: none;
    }

    .vanity-space {
        height: 300px;
        width: 100vw;
        background-color: #f3f3f3;
    }

    .meril {
        height: 400px;
        width: auto;
        display: block;
        transform: translateX(5%);
    }  
    .video-wrapper {
        position: relative;
        height: 100%;
        background-color: #00000000;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .video-main {
        min-height: 350px;
        max-height: 450px;
        width: unset;
    }

    .overlay-text {
        position: absolute;
        top: 70%;
        left: 40%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 30px;
        font-weight: bold;
        opacity: 0;
        pointer-events: none;
        z-index: 10;
        font-family: copperplate;
    }

    .scent-analysis-container {
        width: 90vw;
    }

    .purchase-actions {
        margin-top: 25px;
        padding: 0 10%;
        padding-bottom: 10%;
    }
}

    @media(min-width: 768px){
        .faq {
        max-width: 900px;
        margin: 40px auto;
        color: #1a1a1a;
        margin-left: 5%;
    }
    }
