/** Shopify CDN: Minification failed

Line 641:79 Unexpected "/"
Line 729:53 Expected identifier but found "*"

**/
/* General Page Styles */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  line-height: 1.6;
  color: #333;
  background-color: #F8F8F8; /* Light gray background like Dior */
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Custom Header */
.dior-custom-header {
  background-color: #fff;
  padding: 0 25px; /* Remove top/bottom padding to control height precisely */
  position: fixed;
  top: 0;          /* Initial position */
  left: 0;         /* Ensure it spans full width */
  right: 0;        /* Ensure it spans full width */
  z-index: 1000;
  height: 70px; /* Adjust height to match Dior's example, e.g., 70px or 80px */
  box-sizing: border-box;
  display: flex; /* ADDED: to help center logo */
  align-items: center; /* ADDED: to vertically align items */
  transition: top 0.5s ease-in-out, background-color 0.5s ease-in-out;
  /* Ensure position: sticky is still there if you want basic stickiness too */  
}

/* When header is at the very top of the page */
.dior-custom-header.header-transparent-at-top {
  background-color: transparent !important; /* Adding !important for testing */
}
/* Optional: If you need to change logo/icon color specifically when transparent */
.dior-custom-header.header-transparent-at-top .logo,
.dior-custom-header.header-transparent-at-top .header-nav a,
.dior-custom-header.header-transparent-at-top .header-menu-toggle {
}

/* Class to hide the header by moving it off-screen */
.dior-custom-header.header-hidden {
  top: -75px; /* Adjust to be slightly more than your header's height */
}

/* Class to show the header */
.dior-custom-header.header-visible {
  top: 0;
}

.dior-custom-header .header-content {
  max-width: 100%; /* Take full width of header */
  width: 100%; /* ADDED */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.dior-custom-header .logo {
  font-family: 'Times New Roman', Times, serif; /* Example serif font */
  font-size: 44px; /* Adjust to match Dior's logo size */
  font-weight: normal; /* Dior's logo is often not bold */
  letter-spacing: -0.05em; /* Dior uses significant letter spacing */
  text-transform: uppercase;
  color: #000; /* Ensure it's black */
  text-decoration: none; /* Remove underline if 'a' tag */
  /* Centering the logo: */
  margin-left: auto;  /* Push left content away */
  margin-right: auto; /* Push right content away */
  /* If you have a left element (like a menu icon), adjust accordingly */
  /* For example, if you have a menu icon on the left:
     1. Add a placeholder div for the menu icon in HTML (even if empty)
     2. Give header-nav and the placeholder equal flex-basis or width if fixed.
  */
  /* A simpler approach if you want true center and nav items are on the right: */
  position: absolute; /* Take it out of flow */
  left: 50%;
  transform: translateX(-50%); /* Precise centering */

}

.dior-custom-header .header-nav {
  /* Ensure nav doesn't push logo if logo is absolute positioned */
  /* margin-left: auto; /* Push nav to the right if logo is not absolute */
  /* If logo is absolute, nav might need its own positioning relative to right edge */
  display: flex; /* Keep nav items in a row */
  align-items: center;
}

.dior-custom-header .header-nav a {
  margin-left: 40px;
  font-size: 0.9em;
  color: #000; /* Ensure icons are black */
  display: inline-flex; /* Helps with alignment of SVG */
  align-items: center;  
}

/* Specific larger margin for the first icon (Search) if needed,
   or adjust individual margins if the pattern isn't consistent.
   Dior's example seems to have more space after search. */
.dior-custom-header .header-nav a:first-child {
  /* margin-left: 0; /* No margin for the very first item in the nav group */
}
/* If Search is first and you want more space AFTER it: */
.dior-custom-header .header-nav a[href*="/search"] { /* Target search icon specifically */
  /* margin-right: 15px; /* Add extra space to its right, so next icon has more total space from it */
  /* Or, more simply, adjust margin-left on the second icon */
}

.dior-custom-header .header-nav a:nth-child(2) { /* Second icon (now Wishlist) */
  /* margin-left: 40px; /* Example: If you want more space here */
}

.dior-custom-header .header-nav svg {
  vertical-align: middle;
  width: 18px; /* Adjust icon size */
  height: 18px; /* Adjust icon size */
  fill: #000; /* Ensure SVG fill is black */
}

/* Header Menu Container (for hamburger icon on the left) */
.header-menu-container {
  /* This container helps balance the header if logo is not absolute.
     If logo is absolute, this just holds the menu button. */
  /* Example: give it a fixed width to balance .header-nav if needed */
  /* width: 50px;
     display: flex;
     align-items: center; */
}

.header-menu-toggle {
  background: none;
  border: none;
  padding: 10px; /* Make it easier to click */
  cursor: pointer;
  display: inline-flex; /* For icon alignment */
  align-items: center;
  justify-content: center;
  color: #000; /* Icon color */
}

.header-menu-toggle svg {
  width: 24px; /* Adjust size as needed */
  height: 24px;
}

/* Mobile Nav Panel */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  left: -300px; /* Start off-screen */
  width: 300px; /* Or your desired width */
  max-width: 80%;
  height: 100%;
  background-color: #fff;
  z-index: 1002; /* Above header, below potential modals */
  transition: left 0.3s ease-in-out;
  overflow-y: auto;
  padding: 20px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}
.mobile-nav-panel.is-visible {
  left: 0;
}
.mobile-nav-panel__inner {
  position: relative; /* For close button positioning */
}

.mobile-nav-close {
  position: absolute;
  top: -10px; /* Adjust for better positioning relative to padding */
  right: -5px; /* Adjust */
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 1.5em; /* Larger close icon */
  color: #333;
}
.mobile-nav-close svg {
   width: 20px;
   height: 20px;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px; /* Space from top/close button */
}
.mobile-nav li a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: #333;
  font-size: 1.1em;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav li:last-child a {
  border-bottom: none;
}
.mobile-nav__submenu {
  padding-left: 20px;
  font-size: 0.9em;
}
.mobile-nav__submenu li a {
  font-size: 1em; /* Relative to parent */
  padding: 10px 0;
  color: #555;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1001; /* Below panel, above content */
  display: none; /* Hidden by default */
}

/* Prevent body scroll when mobile menu is open */
body.mobile-nav-open {
  overflow: hidden;
}

/* Dior Product Page Specific Styles */
.dior-product-page {
  /* No specific styles needed here if body covers it */
}

.dior-product-container {
  display: flex;
  flex-wrap: wrap; 
  gap: 0; /* Remove gap if you want them to touch, or set a very small gap like 1px if there's a faint line */
  padding: 0; /* Remove padding if you want edge-to-edge split */
  max-width: 100%; /* Ensure it spans full width */
  margin: 0 auto;
  position: relative; 
}

.dior-media-column {
  flex: 1 1 50%; /* UPDATED: Exactly 50% */
  box-sizing: border-box; /* Ensure padding is included in width calculation if you add padding */
  /* padding-top: 70px; */
}

.dior-media-column .product-media-item video {
  width: 100%;
  height: auto;
  display: block;
}

.dior-info-column {
  top: 70px;
  flex: 1 1 50%; /* UPDATED: Exactly 50% */
  position: sticky;
  align-self: flex-start;
  height: 100vh; /* Make it full viewport height initially */
  overflow-y: auto; 
  padding: 40px; /* Dior seems to have significant padding in the info column */
  background-color: transparent; /* UPDATED: Remove default white background */
  box-shadow: none; /* UPDATED: Remove shadow */
  box-sizing: border-box;
  transition: top 0.3s ease-in-out, height 0.3s ease-in-out;
}

/* New class for when info column needs to offset for the opaque header */
.dior-info-column.offset-for-header {
  top: 70px; /* Height of your header */
  height: calc(100vh - 70px); /* Adjust height accordingly */
}

/* When header is transparent, info column sticks to very top of viewport */
.dior-info-column.sticky-to-viewport-top {
  top: 70px;
  height: 100vh;
}

.dior-info-column h1 {
  font-size: 1.6em;
  font-weight: 500; /* Dior uses lighter font weights for titles */
  margin-top: 0;
  margin-bottom: 8px;
}
.dior-info-column .product-vendor {
  font-size: 0.85em;
  color: #777;
  margin-bottom: 15px;
}

.price-section {
  margin-bottom: 20px;
}
.product-price {
  font-size: 1.4em;
  font-weight: 500;
  color: #000;
}
.compare-at-price {
  font-size: 1em;
  color: #888;
  margin-left: 10px;
  text-decoration: line-through;
}

.variant-picker {
  margin-bottom: 20px;
}
.variant-picker label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9em;
  font-weight: 500;
}
.variant-picker select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 0; /* Dior often uses no border-radius */
  background-color: #fff;
  font-size: 1em;
  appearance: none; /* For custom arrow if desired */
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%208l5%205%205-5z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

.add-to-cart-button {
  display: flex; /* ADDED: To position text and price */
  justify-content: space-between; /* ADDED: Pushes text to left, price to right */
  align-items: center; /* ADDED: Vertically align items if they have different heights */
  width: 100%;
  padding: 15px 20px; /* Adjust padding as needed */
  background-color: #5D676C; /* UPDATED: New base color */
  color: #fff;
  border: none;
  font-size: 1em; /* Or your desired font size */
  text-transform: uppercase; /* As in Dior's style */
  letter-spacing: 0.05em; /* As in Dior's style */
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 8px; /* UPDATED: Rounded corners, adjust as needed */
}
.add-to-cart-button:hover:not(:disabled) {
  background-color: #70797e; /* UPDATED: Slightly lighter version of #5D676C */
  /* You can also use filter: brightness(110%); for a quick lighter shade:
     background-color: #5D676C; 
     filter: brightness(110%); 
  */
}
.add-to-cart-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  color: #777; /* Optional: darker text for disabled state */
}
/* Optional: if you need specific styling for the text or price spans */
.add-to-cart-button__text {
  /* No specific styles needed if default flex behavior is fine */
}
.add-to-cart-button__price {
  font-weight: bold; /* Optional: make price bold */
}

.express-payment-placeholder {
  margin-top: 15px;
  text-align: center;
  padding: 10px;
  border: 1px solid #e0e0e0;
  font-size: 0.9em;
  color: #555;
}

/* Product Tabs Styling */
.product-tabs {
  margin-top: 30px;
  border-top: 1px solid #e0e0e0;
}
.product-tabs-nav {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}
.product-tabs-nav button {
  background: none;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 0.9em;
  color: #555;
  outline: none;
  flex-grow: 1; /* Make buttons share space */
  text-align: center;
  position: relative;
}
.product-tabs-nav button.active {
  font-weight: bold;
  color: #000;
}
.product-tabs-nav button.active::after { /* Underline for active tab */
  content: '';
  position: absolute;
  bottom: -1px; /* Align with border-bottom of nav */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}

.product-tab-content {
  display: none;
  padding: 20px 0;
  font-size: 0.9em;
  line-height: 1.7;
}
.product-tab-content.active {
  display: block;
}
.product-tab-content h4 {
  font-size: 1.1em;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.product-tab-content ul {
  list-style: disc;
  padding-left: 20px;
}

/* Related Collection / Recommendations Styling */
.related-collection-section {
  padding: 60px 25px;
  text-align: center;
  /* clear: both; Ensure it's below floated/flex items if product container wraps weirdly */
  max-width: 100%;
  margin: 40px auto 60px; /* Centering and spacing */
  background-color: transparent; /* Optional: background for this section */
}
.related-collection-section h2 {
  margin-bottom: 40px;
  font-size: 22px; /* Adjust to Dior's style - example value */
  font-weight: 400; /* Lighter weight, common in Dior */
  /* font-family: 'YourSerifFont', serif; /* Example: Use a serif font like Dior often does */
  letter-spacing: 0.03em; /* Subtle letter spacing */
  text-transform: none; /* Usually not uppercase in Dior for these titles */
  color: #000;
}
.related-products-grid {
  display: grid;
  /* Aim for 4 items on larger screens, adjust minmax accordingly */
  /* Dior's example has 4 items, usually means a fixed number or careful minmax */
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); /* Increased min card width */
  /* Or for exactly 4 columns on larger screens:
  grid-template-columns: repeat(4, 1fr);
  @media (max-width: 1024px) { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  */
  gap: 25px; /* Increased gap between cards, adjust to match Dior */
  /* Limit max-width of the grid itself if needed to control card sizes on very wide screens */
  max-width: 1280px; /* Example max-width for the grid content, centered */
  margin-left: auto;
  margin-right: auto;
}
.related-product-card {
  background-color: transparent; /* White background for cards, as page is #F8F8F8 */
  border: none; /* No border, or a very very faint one if needed: 1px solid #f0f0f0 */
  padding: 0; /* Remove padding from card itself, link inside will handle it */
  text-align: center; /* Center align all content */
  overflow: hidden; /* To ensure image aspect ratio doesn't break layout */
}
.related-product-card a { /* The link wrapping the content */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally */
  text-decoration: none;
  color: #333;
  height: 100%;
  padding: 20px 20px 25px; /* Internal padding for content inside the link */
  box-sizing: border-box;
}
.related-product-card a:hover img {
  /* Optional: Slight zoom or opacity change on image hover */
  /* transform: scale(1.03); */
  /* opacity: 0.9; */
}
.related-product-card a:hover h3 {
  text-decoration: underline; /* Underline title on hover, common practice */
}

.related-product-card img {
  max-width: 100%;
  height: auto; /* Will be controlled by inline aspect-ratio style */
  display: block; /* Ensures it behaves well */
  margin-bottom: 20px; /* Increased space below image */
  /* transition: transform 0.3s ease, opacity 0.3s ease; /* For hover effect */
  /* If you want all images to have a consistent aspect ratio (e.g., more vertical): */
  /* aspect-ratio: 3 / 4; */ /* Remove inline style from Liquid if you use this */
  /* object-fit: cover; */   /* Remove inline style from Liquid if you use this */
}
.related-product-card h3 {
  font-size: 14px; /* Adjust to Dior's style */
  font-weight: 400; /* Lighter, or 500 if Dior uses slightly bolder */
  /* font-family: 'YourSansSerifCleanFont', sans-serif; /* Example */
  color: #111; /* Darker color for title */
  margin-bottom: 6px;
  line-height: 1.3;
  /* To prevent text from wrapping too much and causing height jumps: */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(14px * 1.3 * 2); /* Approx height for 2 lines, (font-size * line-height * lines) */
}
.related-product-card p {
  font-size: 13px; /* Adjust to Dior's style */
  font-weight: 400;
  /* font-family: 'YourSansSerifCleanFont', sans-serif; */
  color: #555; /* Slightly lighter than title */
  margin-top: auto; /* Pushes price to the bottom if card link uses flex and enough height */
}

/* Custom Footer */
.dior-custom-footer {
  background-color: #f0f0f0; /* Lighter gray for footer */
  padding: 30px 25px;
  text-align: center;
  font-size: 0.85em;
  color: #555;
  border-top: 1px solid #e0e0e0;
}
.dior-custom-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
}
.dior-custom-footer .footer-links {
  margin-bottom: 15px;
}
.dior-custom-footer .footer-links a {
  margin: 0 10px;
  color: #555;
}
.dior-custom-footer .footer-social {
  margin-bottom: 15px;
}
.dior-custom-footer .copyright {
  font-size: 0.9em;
  color: #777;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dior-product-container {
    flex-direction: column;
    padding: 10px;
  }
  .dior-info-column {
    position: static; 
    height: auto;
    overflow-y: visible;
    margin-top: 20px;
    box-shadow: none;
    padding: 15px;
  }
  .dior-custom-header .logo {
    font-size: 1.5em;
  }
  .dior-custom-header .header-nav a {
    margin-left: 10px;
  }
  .related-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Smaller cards on mobile */
    gap: 15px;
  }
  .related-collection-section h2 {
    font-size: 20px;
  }
  .related-product-card h3 {
    font-size: 13px;
    min-height: calc(13px * 1.3 * 2);
  }
  .related-product-card p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .related-products-grid {
    /* Optionally go to 1 column on very small screens or keep 2 if they fit */
    /* grid-template-columns: 1fr; */
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Or allow 2 smaller ones */
  }
}

/* --- Existing styles from previous response should be here --- */

/* Updated and New Styles for Media Column */

/* Common wrapper for each media block */
.dior-media-column .product-media-item {
  margin-bottom: 15px;
  background-color: transparent; /* Or your desired background if video doesn't fill */
  overflow: hidden; /* Important to contain the video/image if using object-fit: cover */
}

/* Styling for the custom video wrapper */
.custom-video-wrapper {
  position: relative; /* For positioning custom controls */
  width: 100%;
  /* aspect-ratio will be set inline from Liquid */
  background-color: #FFF !important; /* Fallback background for video area */
  overflow: hidden; /* Ensure video stays within bounds */
}

/* Styling for the video element itself */
.custom-product-video { /* Class applied to the <video> tag by video_tag */
  display: block;
  width: 100%;
  height: 100%; /* Make video fill its wrapper */
  object-fit: cover; /* CHANGED: Try 'cover' to fill space, might crop video.
                         Or 'contain' to show full video, might leave letterboxing.
                         Or remove if aspect-ratio of wrapper and video match. */
}

/* Styling for the actual media elements inside wrappers to make them responsive */
.dior-media-column img /* Already styled in snippet with inline style */
/* .dior-media-column .shopify-video-wrapper, */
/* .dior-media-column .shopify-model-wrapper, */
/* .dior-media-column .responsive-media { /* For other generic media types */ */
{
  width: 100%;
  height: auto; /* This will be governed by the aspect-ratio style */
  display: block; /* Removes extra space below inline elements */
}

/* If Shopify's media tags add specific wrappers, ensure they are also responsive */
.dior-media-column .responsive-video, /* Wrapper often added by video_tag */
.dior-media-column .responsive-media, /* Wrapper often added by media_tag */
.dior-media-column .shopify-model-viewer-ui, /* Wrapper for 3D models */
.dior-media-column .media-item--external-video /* Wrapper for external videos */ {
  width: 100%;
  height: 100%; /* Fill the aspect-ratio wrapper */
  display: block;
}
/* Ensure the actual video/model inside these wrappers is also responsive
   (though the generic rules above should cover most cases) */
.dior-media-column .responsive-video video,
.dior-media-column .responsive-media > * { /* Any direct child of responsive-media */
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Or 'cover' depending on desired behavior */
}


/* Row for side-by-side media */
.dior-media-row { /* This div IS a .product-media-item, so it already gets margin-bottom */
  display: flex;
  gap: 15px; /* Space between the two half-width items */
}

.dior-media-item-half {
  flex: 1 1 calc(50% - 7.5px); /* Each takes half width minus half the gap */
  box-sizing: border-box;
  overflow: hidden; /* Helps contain the media if aspect ratios are very different */
  /* flex: 1 0 calc(50% - 7.5px); /* flex-basis to 50% minus half gap. Allows shrinking, no growing beyond this. */
  /* box-sizing: border-box; */
  /* The img/video/etc inside will take 100% width of this .dior-media-item-half
     due to the generic styling for img, video, etc. above. */
}

/* Simple custom play/pause button (initially hidden by inline style in snippet) */
.custom-video-play-pause {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 10;
  background: rgba(40, 40, 40, 0.7);
  color: white; /* This will be the fill color for SVG if using currentColor */
  border: none;
  border-radius: 20%; /* Circular button */
  width: 30px;  /* Slightly larger for better touch target and visual like Dior */
  height: 30px; /* Same as width for a perfect circle */
  padding: 0;   /* Remove padding as we're centering content with flex */
  cursor: pointer;
  display: flex; /* Crucial for centering */
  align-items: center; /* Crucial for vertical centering */
  justify-content: center; /* Crucial for horizontal centering */
  opacity: 0.3; /* Initially hidden, JS will manage visibility on hover */
  pointer-events: auto; /* Initially not clickable, JS will manage */
  transition: background-color 0.2s ease, opacity 0.2s ease; /* Keep opacity transition for hover if desired */
}
.custom-video-play-pause:hover {
  background: rgba(0, 0, 0, 0.9);
  opacity: 0.5;
}
.custom-video-play-pause svg {
  width: 20px; /* Adjust size of the icon itself */
  height: 20px; /* Adjust size of the icon itself */
  fill: currentColor; /* Inherits 'color: white' from the button */
  display: block; /* Helps remove any extra spacing around SVG */
}
/* Ensure only one icon is visible at a time (JS handles this, but CSS can be a fallback) */
.custom-video-play-pause .icon-play {
  /* display: none; /* JS will control this */
}
.custom-video-play-pause .icon-pause {
  /* display: block; /* JS will control this */
}

.custom-video-wrapper.has-custom-product-video iframe /* Target iframe for external video */ {
  display: block;
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 100%; /* Make video fill its wrapper */ */
  height: auto;
  /* object-fit: cover; */
}

/* Styling for the video element itself */
.custom-video-wrapper.has-custom-product-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02); /* EXAMPLE: Scale up by 2%. Adjust as needed, use small values. */
}