/* Basic reset and typography */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background: #f7f7f7;
  line-height: 1.5;
}

/* Header / container */
.main-header { max-width: 1100px; margin: 0 auto; padding: 0 16px;position: relative; }
.mobile { display: none; }
@media (max-width: 600px) {
  header .desktop { display: none; }
  header .mobile { display: inline-block; }
}
/* Links and buttons */
a { color: #c96634; text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }
.btn { display: inline-block; padding: 8px 14px; background: #c96634; color: #fff; border-radius: 4px; text-decoration: none; }
.btn.secondary { background: #db570b; }

/* Header / nav */
header { height: 300px; background-color: #4e453b; color: #ee8309; display: flex; align-items: center; }
/* Navigation styling: horizontal layout, spacing, and active state */
nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; align-items: center; }
nav li { margin: 0; }
nav a { color: #f47106; padding: 8px 10px; border-radius: 4px; display: inline-block; }
nav a:hover, nav a:focus { background: rgba(255,255,255,0.12); text-decoration: none; }
nav a[aria-current="page"], nav a.active { background: rgba(0,0,0,0.15); box-shadow: inset 0 -2px 0 rgba(0,0,0,0.06); }

/* Header / lists */
header .ul { list-style-type: none; padding: 0; margin: 0; }
header .li { display: inline-block; margin-right: 20px; color: white; }
@media (max-width: 600px) {
  nav ul { flex-direction: column; gap: 8px; }
  header { height: auto; padding: 12px 0; }
}

/* Header / logo container */
.logo-container { display: flex; flex-direction: column; align-items: center; /* This centers the image and hr horizontally */width: 100%;}
hr {width: 80%; /* Match the width seen in your image */ border: 0; border-top: 1px solid white; /* Matches your white line */ margin-bottom: 20px; /* Adjusts the gap between line and image */}
.centered-logo { width: 150px; /* Adjust based on your preferred size */ height: auto; border-radius: 50%; }
@keyframes bubble-pulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px rgba(255, 165, 0, 0)); /* Transparent glow */
  }
  50% {
    transform: scale(1.1); /* Grows slightly */
    filter: drop-shadow(0 0 15px rgba(255, 165, 0, 0.6)); /* Orange glow */
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px rgba(255, 165, 0, 0));
  }
}
.centered-logo { animation: bubble-pulse 3s infinite; /* Apply the animation with a duration of 3 seconds, looping infinitely */ }
/* Container for the ad positioning */
.header-ad-container {
    position: absolute;
    top: 15px;
    left: 20px;
    z-index: 1001; /* Keeps it above other elements */
}

/* The circular badge */
.dynamic-ad-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: #ff9d00; 
    color: #000;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 900;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #ffffff;
}

/* Hover "Pop" effect */
.dynamic-ad-badge:hover {
    transform: scale(1.15) rotate(-5deg);
    background: #ffffff;
    color: #ff9d00;
    border-color: #ff9d00;
}

/* The Dynamic Pulse Animation */
.ad-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #ff9d00;
    border-radius: 50%;
    animation: ad-pulse-effect 2s infinite;
    pointer-events: none; /* Allows clicks to pass through to the link */
}

@keyframes ad-pulse-effect {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}
/* Tooltip Box - Price: 1,500/- */
.dynamic-ad-badge::after {
    content: "Price: 1,500/-";
    position: absolute;
    bottom: -35px; /* Sits just below the badge */
    left: 50%;
    transform: translateX(-50%);
    background: #333; /* Dark gray for high contrast */
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0; /* Hidden by default */
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1002;
}

/* Tooltip Little Triangle Pointer */
.dynamic-ad-badge::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

/* Reveal Tooltip & Triangle on Hover */
.dynamic-ad-badge:hover::after, 
.dynamic-ad-badge:hover::before {
    opacity: 1;
    visibility: visible;
}


/* Shop Container */
.shop-container {display: flex;justify-content: center;gap: 30px;padding: 40px 20px;max-width: 1200px;margin: 0 auto;}
.shop-item {flex: 1; /* Forces 3 equal columns */background: #fff;border-radius: 12px;box-shadow: 0 4px 15px rgba(0,0,0,0.1);overflow: hidden;transition: transform 0.3s ease;text-align: center;padding-bottom: 20px;}
.shop-item-details {padding: 15px; flex-grow: 1; display: flex; flex-direction: column;}
.shop-item-title { font-size: 24px; margin: 0 0 10px 0;}
.shop-item-description { color: grey; font-size: 16px; margin: 0 0 15px 0;}
.shop-item-price { color: black;font-size: 22px; margin: 0 0 15px 0;}
.shop-item-button { border: none; outline: 0; padding: 12px; color: white; background-color: #000;text-align: center; cursor: pointer;width: 100%;font-size: 18px;border-radius: 4px;}
.shop-item-button:hover {opacity: 0.7; /* Change opacity on hover */}
.shop-item-image {width: 100%; height: 250px; object-fit: contain; /* Keeps the waveform shape perfect */ padding: 20px; transition: all 0.3s ease; border-radius: 12px 12px 0 0; /* Rounded top corners for a more polished look */}
.shop-item:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0,0,0,0.2);}
.shop-item:hover .shop-item-image {animation: beatPulse 1.5s ease-in-out infinite; /* Start the pulse animation on hover */}
.tier-1:hover { border: 2px solid #007bff; } /* Blue for Basic */
.tier-2:hover { border: 2px solid #ff8c00; } /* Orange for Intermediate */
.tier-3:hover { border: 2px solid #00f2ff; } /* Cyan for Advanced */
.audio-player { width: 100%; margin-top: 15px; }
/* 2. The Pulse Animation */
@keyframes beatPulse {
    0% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.08); filter: brightness(1.2); }
    100% { transform: scale(1); filter: brightness(1); }
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .shop-container {
        flex-direction: column;
        align-items: center;
    }
    .shop-item { width: 100%; max-width: 400px; }
}


/* Section / headings and paragraphs */
.content-section { margin: 1em;}
.content-section h1 { font-size: 2rem; margin: 0 0 .5rem; display: block;text-align: center;color: #ff8c00; }
.content-section h2 { font-size: 1.5rem; margin: 0 0 .75rem; text-align: center;color: #ff8c00; }
.content-section h3 { font-size: 1.25rem; margin: 0 0 .75rem; text-align: center;color: black; }
.content-section p { margin: 0 0 1rem; }
.content-section li { margin:2em}
.content-section sub{ font-size: 0.875rem; color: #ee8312; }
.content-section a { color: #c96634; text-decoration:none; display: inline-block;}
.content-section a:hover, .content-section a:focus { text-decoration: underline; }
.content-section img { width: 100%; height: auto; margin-top: 20px; }
section .nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; align-items: center; }
section .nav li { margin: 0; }
section .nav a { color: #f28323; padding: 8px 10px; border-radius: 4px; display: inline-block; }
section .nav a:hover, nav a:focus { background: rgba(255,255,255,0.12); text-decoration: none; }
section .nav a[aria-current="page"], nav a.active { background: rgba(0,0,0,0.15); box-shadow: inset 0 -2px 0 rgba(0,0,0,0.06); }
section .ul { list-style-type: none; padding: 0; margin: 0; }
section .li { display: inline-block; margin-right: 50px; color: white; }

/* Section / partners */
.partners-content-section { background-color: #eee; color: #8b8b84; padding: 20px; display: flex; flex-direction: row; height: 465px;}
.partners-content-section .feature { margin: auto; width: 300px; text-align:justify;} 
.partners-content-section .feature h2 { font-size: 1.8rem; margin-bottom: 0.5em; }
.partners-content-section .feature p { font-size: 1rem; line-height: 1.6; }
.card-container { display: flex; justify-content: center; gap: 20px; /* Space between cards */ padding: 40px; flex-wrap: wrap; /* Allows stacking on mobile */}
.card { width: 400px; height: 450px; border-radius: 20px; background-size: cover; background-position: center; position: relative; /* Needed for the info positioning */ overflow: hidden; /* Clips the hover effect to the corners */ text-decoration: none; /* Removes underline from links */ display: flex; align-items: flex-end; /* Puts text at the bottom */ transition: transform 0.4s ease, box-shadow 0.4s ease;}
.card-1 { background-image: url('Images/LIVINUPLOGOWHITEBG.png'); }
.card-2 { background-image: url('Images/Pesi\ logo.png');}
.card-3 { background-image: url('Images/Belle\ Bijoux.png'); }
.card-4 { background-image: url('Images/Paripesa.png'); }
.card-info {
  width: 100%;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9); /* Light, clean blur effect */
  text-align: center;
  transform: translateY(100%); /* Hides it below the card */
  transition: transform 0.4s ease-in-out;
}
.card-info span {
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.card:hover .card-info {
  transform: translateY(0); /* Slides the "View Details" up */
}

/* Section / news */
.news-content-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.news-item {
    flex: 1;
    position: relative;
    height: 400px;
    overflow: hidden; /* This "clips" the scrolling text */
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.scroll-content {
    position: absolute;
    width: 90%;
    text-align: center;
    /* Apply animation to the whole group */
    animation: newsScrollUp 15s linear infinite;
}
.scroll-content h2 {
    color: #ff8c00; /* Your previous orange */
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* Makes it readable on images */
}
.scroll-content p {
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}
@keyframes newsScrollUp {
    0% { transform: translateY(300px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-300px); opacity: 0; }
}
.news-item:hover .scroll-content {
    animation-play-state: paused;
}
@media (max-width: 768px) {
    .news-content-section { flex-direction: column; }
}


/* About Section */
.about-section {
    max-width: 800px;        /* Limits the width for better readability */
    margin: 40px auto;      /* Centers the section and adds vertical spacing */
    padding: 0 20px;        /* Adds horizontal padding for mobile */
}
.about-section h2 {
    color: #ff8c00;         /* Your branded orange for subheadings */
    margin-top: 0;          /* Removes default top margin for better spacing */
    font-size: 1.8rem;     /* Optional: size for subheadings */
    text-transform: uppercase;
    text-align: center;      /* Centers the subheading */
}
.about-section p {
    color: #555;           /* A softer dark color for paragraphs */
    line-height: 1.6;      /* Improves readability */
    margin-bottom: 1em;    /* Adds space between paragraphs */
    font-size: 1rem;       /* Optional: sets a comfortable reading size */
}
.about-image {
    width: 250px;           /* Set a specific size for the circle */
    height: 250px;          /* Height must match width for a perfect circle */
    object-fit: cover;      /* Prevents the image from looking squashed */
    border-radius: 50%;     /* This makes it a circle */
    
    float: left;            /* Pushes image to the left so text flows right */
    margin: 0 30px 20px 0;  /* Adds space: [top] [right] [bottom] [left] */
    
    /* This makes the text wrap around the CURVE instead of a square box */
    shape-outside: circle(50%); 
    
    border: 3px solid #ff8c00; /* Optional: adds your branded orange border */
}
.about-section::after {
    content: "";
    display: table;
    clear: both;
}


/* --- Section / scroller container --- */
.scroller-container { 
    overflow: hidden; 
    width: 100%; 
    background-color: #eee; 
    height: 200px; 
    display: flex; 
    align-items: center; 
    box-sizing: border-box;
    position: relative; /* Established stacking context */
}

.image-wrapper { 
    display: flex; 
    height: 100%; 
    gap: 10px; 
    flex-wrap: nowrap; 
    animation: scroll-animation 20s linear infinite; 
    will-change: transform; /* Prepares browser for movement */
}

.scroller-container img { 
    height: 100%; 
    width: auto; 
    display: block; 
    flex-shrink: 0; 
    object-fit: contain; 
    
    /* THE FIX: Prevents images vanishing during the scroll/hover transition */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0); 
}

/* Optional: If you want it to PAUSE on hover, change 'running' to 'paused' */
.scroller-container:hover .image-wrapper {
    animation-play-state: paused; 
}

@keyframes scroll-animation {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}


/* Section / Media */
.media-container {display: flex;justify-content: center;align-items: stretch; /* Forces both boxes to the same height */max-width: 1000px;    /* Or whatever width fits your design */margin: 0 auto;    /* Centers the whole block */gap: 15px;            /* Adds a clean space between them */height: 670px;        /* Set a fixed height that works for both */}
.media-item {flex: 1;              /* Makes both sides exactly 50% width */position: relative;   /* Keeps your "Tap for Sound" button inside the video */overflow: hidden;     /* Clips any extra image/video edges */}
.media-item img, 
.media-item video {width: 100%;height: 100%;object-fit: cover;    /* Fills the box completely and removes gaps */display: block;}
/* On mobile, stack them so they aren't too tiny */
@media (max-width: 768px) {
    .media-container {
        flex-direction: column;
    }
}
.unmute-overlay {position: absolute;bottom: 15px; right: 15px; background: rgba(0, 0, 0, 0.6); color: #fff; border: 1px solid rgba(255, 255, 255, 0.3); padding: 8px 12px;border-radius: 20px; cursor: pointer;font-size: 14px; font-family: sans-serif;transition: background 0.3s;}
.unmute-overlay:hover {background: rgba(0, 0, 0, 0.8);}

/* Section / Buttons */
.shop-item-button { border: none; outline: 0; padding: 12px; color: rgb(244, 145, 6); background-color: #000;text-align: center; cursor: pointer;width: 100%;font-size: 18px;border-radius: 4px;}
.shop-item-button:hover {opacity: 0.7; /* Change opacity on hover */}
.back-to-home { background: none; border: none; color: #d80e0e; cursor: pointer; font-size: 14px; margin: 1em; }
.back-to-home :hover { text-decoration: underline; }
.back-to-shop { background: none; border: none; color: #e46c0a; cursor: pointer; font-size: 14px; margin: 1em; }
.back-to-shop:hover { text-decoration: underline; }
.back-to-blog { background: none; border: none; color: #e46c0a; cursor: pointer; font-size: 14px; margin: 1em; }
.back-to-blog:hover { text-decoration: underline; }
.get-in-touch { background: none; border: none; color: #e46c0a; cursor: pointer; font-size: 14px; }
.get-in-touch:hover { text-decoration: underline; }
.view-button { border: none; outline: 0; padding: 12px; color: rgb(244, 145, 6); background-color: #000;text-align: center; cursor: pointer;width: 100%;font-size: 18px;border-radius: 4px;}
.view-button:hover, .view-item-button:focus { opacity: 0.7; /* Change opacity on hover */}
.view-button-disabled { border: none; outline: 0; padding: 12px; color: rgb(244, 145, 6); background-color: #000;text-align: center; cursor: pointer;width: 100%;font-size: 18px;border-radius: 4px;}
.view-button-disabled:hover {opacity: 0.7; /* Change opacity on hover */}
.try-intermediate-beats-button {background: none; border: none; color: #e46c0a; cursor: pointer; font-size: 14px; margin: 1em; }
.try-intermediate-beats-button:hover, .try-intermediate-beats-button:focus { opacity: 0.7; /* Change opacity on hover */}
.try-advanced-beats-button { background: none; border: none; color: #e46c0a; cursor: pointer; font-size: 14px; margin: 1em;}
.try-advanced-beats-button:hover, .try-advanced-beats-button:focus { opacity: 0.7; /* Change opacity on hover */} 
.try-basic-beats-button { background: none; border: none; color: #e46c0a; cursor: pointer; font-size: 14px; margin: 1em;}
.try-basic-beats-button:hover, .try-basic-beats-button:focus { opacity: 0.7; /* Change opacity on hover */}
/* Target your specific button class or link */
.buy-music-button, .view-merchandise-button {
  /* 1. Shape and Layout */
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px; /* Modern "pill" shape */
  text-decoration: none;
  transition: all 0.3s ease; /* Smooth hover transition */
  
  /* 2. Colors and Typography */
  background-color: #ff7b00; /* Your orange color */
  color: #ffffff !important; /* Forces text to stay white */
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  
  /* 3. Shadow for depth */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 4. Interactive Hover State */
.buy-music-button:hover, .view-merchandise-button:hover {
  background-color: #e66e00; /* Slightly darker orange */
  transform: translateY(-2px); /* Subtle "lift" effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* 5. Click Effect */
.buy-music-button:active, .view-merchandise-button:active {
  transform: translateY(0);
}



/* Sidebar Container */
.cart-sidebar { position: fixed; top: 0; right: -400px; /* Hidden by default */ width: 350px; height: 100%; background: white;  box-shadow: -5px 0 15px rgba(0,0,0,0.1); transition: 0.3s ease;  z-index: 1000; display: flex; flex-direction: column;}
/* Active Class (Triggered by JS) */
.cart-sidebar.active {right: 0; /* Slide in */}
.cart-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee;}
.cart-footer { padding: 20px; border-top: 1px solid #eee; margin-top: auto;}
.checkout-btn { width: 100%; background: black; color: white; padding: 15px; border: none; cursor: pointer; font-weight: bold; margin-top: 10px;}

/* Dim the background when cart is open */
.cart-overlay.active {display: block;position: fixed;top: 0;left: 0; width: 100%;height: 100%; background: rgba(0,0,0,0.5); z-index: 999;}
.cart-row {display: flex; /* Makes each item behave like a table row for equal height */ width: 100%; justify-content: space-between; align-items: center;  padding: 10px 20px; border-bottom: 1px solid #f0f0f0;}
.cart-item,.cart-price,.cart-quantity-input { display: table-cell; /* Makes these elements behave like table cells for equal height */ vertical-align: middle; /* Vertically centers content within the cell */}
.cart-item { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; width: 40%; }
.empty-msg {  text-align: center;  padding: 40px 10px; color: #888; font-style: italic; font-size: 1.1rem;}
.item-actions {display: flex;align-items: center;gap: 15px;}
.cart-item-info { font-weight: 600; font-size: 14px;color: #333;align-items: right;}
.cart-price {
    flex: 1;
    width: 35%;
    text-align: center;
    font-weight: bold;
    color: #000;
    font-size: 10px;
    padding: 0 10px;
    margin: 0;
}
.cart-quantity-input {
    flex: 1;
    width: 25%;
    margin: 0;
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: left;
    margin-right: 10px;
}

/* The Remove Button */
.btn-danger {
    display: inline-block;
    background-color: transparent;
    color: #ff4d4d; /* Subtle Red */
    border: 1px solid #ff4d4d;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 8px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    width: 55%;
}

.btn-danger:hover {
    background-color: #ff4d4d;
    color: white;
}
.cart-item-info {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    flex-grow: 1;
}

.cart-item-level {
    color: #666;
    font-style: italic;
    font-size: 0.8rem;
}
.cart-item-description {
    display: inline-block;
    max-width: 120px; /* Limits the length */
    overflow: hidden;
    text-overflow: ellipsis; /* Adds ... if text is too long */
    white-space: nowrap;
}


.cart-icon-wrapper {
    position: absolute; /* Or absolute, depending on your header layout */
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 24px;
    color: white;
    z-index: 1000;
}
.cart-icon-wrapper:hover {
    transform: scale(1.1);
    color: #ff4500; /* Optional: subtle orange glow on hover */
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff0000;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #222; /* Matches your dark header background */
}
/* This removes the arrows so users can't even try to click them */
input[readonly]::-webkit-outer-spin-button,
input[readonly]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[readonly] {
    appearance: textfield;
    -moz-appearance: textfield; /* For Firefox */
    background-color: transparent;
    border: none;
    cursor: default;
}
input.cart-quantity-input[readonly]::-webkit-outer-spin-button,
input.cart-quantity-input[readonly]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input.cart-quantity-input[readonly] {
    appearance: textfield;
    -moz-appearance: textfield; /* For Firefox */
    background: transparent;
    border: none;
    text-align: center;
    cursor: default;
    width: 30px;
}
.btn-clear-cart {
    background-color: #ff4d4d; /* Red color for warning */
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-clear-cart:hover {
    background-color: #cc0000;
}
.empty-cart-msg {
    text-align: center;
    padding: 40px 10px;
    color: #888;
    font-style: italic;
    font-size: 1.1rem;
}
.email-row {
    margin-bottom: 15px;
    padding: 0 10px;
}

#cart-customer-email {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

#cart-customer-email:focus {
    border-color: #ff4500; /* Match your brand color */
    outline: none;
}


/* Forms and inputs */
input, textarea, select, button { font: inherit; }

/* Section / checkout */
.checkout-container { max-width: 600px; margin: 0 auto; padding: 20px; }
.checkout-container h1 { text-align: center; }
.checkout-container form { display: flex; flex-direction: column; gap: 15px; }
.checkout-container label { font-weight: bold; }
.checkout-container input, .checkout-container select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; }
.checkout-container textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; }
.checkout-container button { padding: 12px; background-color: #000; color: white; border: none; border-radius: 4px; cursor: pointer; }
.checkout-container button:hover { background-color: #333; }


/* Footer inner container layout */
footer .container.footer { display: flex; justify-content: center; align-items: center; gap: 20px; padding: 0 16px; flex-wrap: wrap; text-align: center; }
footer .footer-top { order: 1; flex: 1 1 100%; display: flex; align-items: center; justify-content: center; }
footer .footer-top p { margin: 0; }
footer .social { order: 2; flex: 1 1 100%; display: flex; gap: 12px; margin-top: 8px; justify-content: center; }
footer .social-link { color: #fff; text-decoration: none; padding: 6px; background: rgba(255,255,255,0.06); border-radius: 6px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; }
footer .social-link svg { width: 20px; height: 20px; display: block; color: #fff; }
footer .social-link:hover { background: rgba(255,255,255,0.12); }

/* Footer: full-width background; flexible inner container */
footer { background-color: #4e453b; color: #fff; padding: 12px 0; }

/* Footer / lists */
footer .ul { list-style-type: none; padding: 0; margin: 0; }
footer .li { display: inline-block; margin-right: 20px; color: rgb(237, 7, 7); }

@media (max-width: 600px) {
  footer .container.footer { flex-direction: column; align-items: center; text-align: center; }
  footer .social { margin-top: 8px; }
}

/* Small utility for screen-reader-only text if needed */
.sr-only { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }


