.full{
    margin-left: 0px;
}
.campaign-card img {
    height: 400px;
    object-fit: cover;
}

.tes {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    font-family: 'test' !important;
}
@font-face {
    font-family: 'test';
    src: url('fonts/Jost-Light.ttf') format('truetype');
}

.main-container {
    width: 100%;
}

@media (min-width: 768px) {   /* md and up */
    .main-container {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Optional: even cleaner if you only want 80% on lg+ */
@media (min-width: 992px) {   /* lg and up */
    .main-container {
        max-width: 80%;
    }
}

.justified{
    text-align: justify;
}
.black-outline {
    color: #292929;
    font-weight: 400;
    line-height: 20px;
    border: 1px solid #292929;
    border-radius: 3px;
    padding: 6px 70px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: white;
}
.product-image-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-box img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-grid-product__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.aspect-ratio-3-4 {
    padding-bottom: 133.33%;
    position: relative;
    overflow: hidden;
}

.product-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
}
.product-image-area-minimal {
    padding: 20px;
    border: 1px solid #eee;
}
/* --- Container and Grid Styles --- */
.product-details-column {
    /* padding-left: 50px; /* Add breathing room for the right column */ */
}

.sticky-details {
    position: sticky;
    top: 30px; /* Offset from the top of the viewport */
}

/* --- Typography: Titles and Headings --- */
.minimal-title {
    font-size: 3rem;
    font-weight: 300; /* Light weight is key for luxury minimal look */
    letter-spacing: -0.05em; /* Subtle tightening */
    margin-top: 0;
}

.section-heading {
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

/* --- Price Styling --- */
.product-price {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.price-value-bold {
    font-weight: 500;
    color: #1a1a1a;
}

.price-original {
    color: #999999;
    font-size: 1rem;
    text-decoration: line-through;
    margin-left: 15px;
}

/* --- Call-to-Action (CTA) Button --- */
.minimalist-cta-button {
    display: block;
    width: 100%;
    padding: 18px 30px;
    text-align: center;
    background-color: #000000; /* High contrast black button */
    color: #ffffff;
    text-transform: uppercase;
    border: 1px solid #000000;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.minimalist-cta-button:hover {
    background-color: #ffffff;
    color: #000000;
}

/* --- Metadata (Product Info) --- */
.product-metadata {
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0; /* Clean, light divider line */
}

.detail-label {
    font-weight: 300;
    color: #555555;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.detail-value {
    font-weight: 400;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-left: 5px; /* Visual separation from label */
}

/* --- Content Sections (Description/Shopping List) --- */
.content-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0; /* Clean, light divider line */
}

.description-text,
.list-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
    font-weight: 300;
}

/* --- Small Text/Links --- */
.small-text {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.link-dark {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
}

.link-dark:hover {
    color: #999999;
}
