/*
 * Color Palette:
 * Primary (Maturity/Exclusivity): #0A1931 (Deep Sapphire/Midnight Blue)
 * Accent (Warmth/Attraction): #FFCC66 (Soft Gold/Muted Yellow)
 * Text/Background: #F7F7F7 (Off-White/Cream), #333 (Dark Grey)
 */

 /* Outline (stroke) for <i> elements — editable vars */
:root {
  --icon-stroke-color: currentColor; /* uses the element's color by default */
  --icon-stroke-width: 1px;          /* tweak thickness */
  --icon-shadow-strength: 1; 
   --fade-duration: 1s;        /* used by shadow fallback (1 = standard) */
}
:root {
  --fade-duration: 1s;
}

 /* Primary — modern browsers (Chrome, Edge, Safari) */
i,
i[class*="fa-"], /* font-awesome-ish */
i.icon {
  color: var(--icon-stroke-color);              /* stroke color */
  -webkit-text-fill-color: transparent;         /* make fill transparent (WebKit) */
  -webkit-text-stroke: var(--icon-stroke-width) var(--icon-stroke-color);
  text-stroke: var(--icon-stroke-width) var(--icon-stroke-color); /* nonstandard but harmless */
  /* keep layout identical to filled icons */
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

/* Fallback for non-WebKit browsers (Firefox older versions): multi-text-shadow trick */
@supports not (-webkit-text-stroke: 1px var(--icon-stroke-color)) {
  i,
  i[class*="fa-"],
  i.icon {
    -webkit-text-fill-color: transparent; /* harmless if unsupported */
    color: transparent;                   /* ensure the center is transparent */
    /* create an outline using multiple shadows — increases DOM paint cost but works */
    text-shadow:
      /* 8-directional shadow; multiply offset by --icon-shadow-strength if you want */
      calc(-1 * var(--icon-shadow-strength)) 0   0 var(--icon-stroke-color),
      calc(1 * var(--icon-shadow-strength)) 0    0 var(--icon-stroke-color),
      0 calc(-1 * var(--icon-shadow-strength))   0 var(--icon-stroke-color),
      0 calc(1 * var(--icon-shadow-strength))    0 var(--icon-stroke-color),
      calc(-1 * var(--icon-shadow-strength)) calc(-1 * var(--icon-shadow-strength)) 0 var(--icon-stroke-color),
      calc(-1 * var(--icon-shadow-strength)) calc(1 * var(--icon-shadow-strength))  0 var(--icon-stroke-color),
      calc(1 * var(--icon-shadow-strength))  calc(-1 * var(--icon-shadow-strength)) 0 var(--icon-stroke-color),
      calc(1 * var(--icon-shadow-strength))  calc(1 * var(--icon-shadow-strength))  0 var(--icon-stroke-color);
  }
}

/* Example utility classes for ease-of-use */
.i-stroke-sm { --icon-stroke-width: 0.8px; --icon-shadow-strength: 1; }
.i-stroke-md { --icon-stroke-width: 1.6px; --icon-shadow-strength: 1.6; }
.i-stroke-lg { --icon-stroke-width: 2.4px; --icon-shadow-strength: 2.4; }

/* Global Reset and Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Smooth transitions for a classic feel */
    transition: all 0.3s ease-in-out;
     --fade-duration: 1s;
}

/* Base Typography and Body Style */
body {
    font-family: 'Georgia', serif; /* Classic and mature font */
    line-height: 1.6;
    background-color: #f7f7f7; /* Soft background */
    color: #333;
     --fade-duration: 1s;
}

html{
    font-size:100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/*
 * --- Header & Navigation Styles ---
 */
.main-header {
    background-color: #0A1931; /* Deep Blue for Exclusivity */
    color: #F7F7F7;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky; /* Sticky header for better user experience */
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo-e {
    color: #FFCC66; /* Soft Gold Big E */
    font-size: 1.5em;
    margin-right: 5px;
    line-height: 1; /* Aligns the E better */
    display:flex;
    align-items:center;
}

.logo-text {
    font-size: 0.5em;
    letter-spacing: 3px;
    text-transform: uppercase;
    color:#f7f7f7;
    border-bottom:3px solid  #FFCC66;
}

/* Search Bar Styling */
.search-container {
    position: relative;
    display: flex;
    flex-grow: 0.4; /* Takes up space in the center */
    max-width:43.8rem;
}

#searchInput {
    width: 100%;
    padding: 8px 15px;
    border: none;
    border-radius: 4px; /* Mildly curved, not too much */
    font-size: 1.1rem;
    background-color: rgba(255, 255, 255, 0.95);
    color: #0A1931;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

#searchButton {
    background-color: #FFCC66;
    color: #0A1931;
    border: none;
    padding: 10px 15px;
    margin-left: -40px; /* Overlap with input for sleek look */
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    font-size: 1em;
}

#searchButton .fas.fa-search{
font-size:1.4rem;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 0 0 4px 4px;
    display: none; /* Hidden by default */
}

.search-result-item {
    padding: 10px;
    cursor: pointer;
    color: #333;
    border-bottom: 1px solid #eee;
}

.search-result-item:hover {
    background-color: #f0f0f0;
}

 .main-header .fas.fa-bars {
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  display: none; /* hidden on desktop */
  z-index: 2000;
  transition: transform 0.3s ease;
}
/* Nav Links */
.nav-links {
    display: flex;
    gap: 36px;
}



.nav-links a {
    padding: 5px 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    
    
}

/* Exclusive Hover Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #FFCC66;
    transition: width 0.4s ease, right 0.4s ease;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.nav-links a .fas{
    position:relative;
    top:-4px;
}

/* Cart Icon */
.cart-icon-container {
    position: relative;
}

.cart-button {
    background: none;
    border: none;
    color: #F7F7F7;
    font-size: 1.8em;
    cursor: pointer;
    padding: 5px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #FFCC66;
    color: #0A1931;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 0.7em;
    font-weight: bold;
    line-height: 1;
    /* Cart count increase animation (pulse) */
    animation: cart-pulse 0.5s;
}

@keyframes cart-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/*
 * --- Modal (Cart, Login, Product Detail) Styles ---
 */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000; /* Above everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    /* Unique entrance animation: Fade in and subtle slide down */
    animation: modal-fade-in 0.3s ease-out;
}

@keyframes modal-fade-in {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-content {
    background-color: #F7F7F7;
    margin: 10% auto; /* Center the modal vertically and horizontally */
    padding: 30px;
    border-radius: 8px; /* Mildly curved */
    width:100%;
    max-width:100vh;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.product-modal-content {
    max-width: 950px; /* Wider for product details */
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: #0A1931;
    text-decoration: none;
    cursor: pointer;
}

.mid-cart .fa-shopping-cart{
    
    font-size:1.6rem;
   
}



#cart-shirt{
    position:absolute;
    right:16px;
    top: 6px;
    transform:rotate(15deg);
    display:none;
    animation: cart-pulse2 0.5s ease-in-out;
}

#cart-shirt.visible { display: block;  
    cursor:none;  }

@keyframes cart-pulse2 {
    0% {  opacity:0; transform: scale(1) rotate(0deg); }
    50% {  opacity:0.8; transform: scale(1.2) rotate(-25deg); }
    100% {  opacity:1; transform: scale(1) rotate(15deg); }
}

#cart2{
    position:fixed;
    z-index:9999;
    top:50%;
    right:1rem;
    color:#FFCC66;
    padding:1rem;
    border-radius:100%;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background-color: rgba(10, 25, 49, 0.9);
    cursor:pointer;
    display:none;
}

#cart2.visible { display: block;  
    }

/*
 * --- Hero Section ---
 */

.hero-section {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  overflow: hidden;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* background layers - two layers that alternate */
.hero-bg {
  position: absolute;
  inset: 0;              /* top:0; right:0; bottom:0; left:0; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity var(--fade-duration) ease-in-out;
  z-index: 0;
}

/* make sure hero content sits above backgrounds */
.hero-content {
  position: relative;
  z-index: 2;
}

/* initially show the first layer */
.hero-bg.bg-a {
  opacity: 1;
}

.hero-content {
    max-width: 600px;
    background-color: rgba(10, 25, 49, 0.7); /* Translucent background for text */
    padding: 30px;
    border-radius: 4px;
    /* Attractive Animation: Subtle slide-in on load */
    animation: slide-in 1s ease-out;
}

@keyframes slide-in {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: #FFCC66;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Call to Action Button */
.cta-button {
    background-color: #FFCC66;
    color: #0A1931;
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-size: 1em;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 4px #d8b056; /* 3D effect */
    transition: background-color 0.3s, transform 0.1s, box-shadow 0.1s;
}

.cta-button:hover {
    background-color: #fcc033;
    box-shadow: 0 2px #d8b056;
    transform: translateY(2px);
}

/*
 * --- Advertisement Section (DM Tech) ---
 */
.advertisement-section {
    background-color: #0A1931; /* Use primary color */
    color: #F7F7F7;
    padding: 20px 5%;
    text-align: center;
    border-bottom: 5px solid #FFCC66; /* Gold accent border */
}

.ad-content h2 {
    color: #FFCC66;
    margin-bottom: 5px;
    font-size: 1.8em;
}

.ad-content p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.ad-link {
    color: #FFCC66;
    font-weight: bold;
    text-decoration: underline;
    display: inline-block;
    padding: 5px;
}

/*
 * --- Breadcrumbs ---
 */
.breadcrumbs-nav {
    padding: 10px 5%;
    background-color: #eee;
    font-size: 0.9em;
    border-bottom: 1px solid #ddd;
}

.breadcrumbs-nav a {
    color: #0A1931;
}

.breadcrumbs-nav span {
    color: #666;
}

.breadcrumbs-nav i {
    margin: 0 5px;
    color: #999;
}

/*
 * --- Product Sections ---
 */
.product-sections-container {
    padding: 40px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #0A1931;
    margin-bottom: 5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.product-category {
    margin-bottom: 40px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Details/Summary for smooth transitions */
.category-header {
    background-color: #0A1931;
    color: #F7F7F7;
    padding: 15px;
    font-size: 1.4em;
    font-weight: bold;
    cursor: pointer;
    display: block; /* Ensures summary takes full width */
    position: relative;
    list-style: none; /* Hide default summary arrow */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Unique Animation: Subtle scale on hover for the category header */
.wow-animation:hover {
    transform: scale(1.01);
    background-color: #1a3258;
}

/* Show custom arrow when closed */
details:not([open]) summary::after {
    content: '\25B6'; /* Right arrow */
    position: absolute;
    right: 20px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
details[open] summary::after {
    content: '\25BC'; /* Down arrow */
    position: absolute;
    right: 20px;
    font-size: 0.8em;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 30px;
}

.product-card {
    background-color: white;
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Classic Animation: Subtle lift and shadow on hover */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    height: 300px;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Classic Animation: Subtle zoom on hover */
    transition: transform 0.5s ease-in-out;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #0A1931;
    margin-bottom: 5px;
}

.product-price {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    margin-right: 10px;
}

.promo-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #D64545; /* Red for attention */
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.8em;
    z-index: 5;
    /* Unique Animation: Small bounce/jiggle */
    animation: jiggle 2s infinite alternate;
}

@keyframes jiggle {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(1deg) scale(1.05); }
    100% { transform: rotate(-1deg); }
}

.card-actions button {
    background-color: #0A1931;
    color: white;
    border: none;
    padding: 8px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9em;
}

.card-actions button:hover {
    background-color: #FFCC66;
    color: #0A1931;
}

/*
 * --- Cart Modal Specifics ---
 */
.cart-modal-content {
    max-width:60vw;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    /* Classic Animation: Subtle hover effect for rows */
    transition: background-color 0.2s;
}

.cart-item:hover {
    background-color: #fafafa;
}

.item-info {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.item-info img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 2px;
}

.item-name {
    font-weight: bold;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.quantity-btn {
    background: #0A1931;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 2px;
}

.cart-summary {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #0A1931;
    font-size: 1.2em;
    font-weight: bold;
    text-align: right;
}

.primary-btn {
    margin-top: 15px;
}

/*
 * --- Product Detail Modal Specifics ---
 */
#productDetailContent {
    display: flex;
    gap: 30px;
    padding-top: 15px;
}

.detail-gallery {
    flex: 1;
    max-width: 55%;
}

.main-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    margin-bottom: 10px;
}

.main-image:hover {
    transform: scale(1.4);
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    overflow-x: auto;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.thumbnail-images img:hover,
.thumbnail-images img.active-thumb {
    border-color: #FFCC66;
}

.detail-info {
    flex: 1;
    max-width: 55%;
}

.detail-info h2 {
    font-size: 2.2em;
    color: #0A1931;
    margin-bottom: 10px;
}

.detail-info .description {
    margin-bottom: 20px;
    color: #555;
}

.detail-price {
    font-size: 1.8em;
    color: #0A1931;
    font-weight: bold;
    margin-bottom: 20px;
}

/*
 * --- Order Simulation Modal ---
 */
.payment-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.payment-btn {
    background-color: #eee;
    color: #333;
    border: 2px solid #eee;
    padding: 15px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-btn.selected {
    border-color: #FFCC66;
    background-color: #fff8e6;
    box-shadow: 0 0 5px rgba(255, 204, 102, 0.5);
}

.confirmation-message {
    text-align: center;
}

i.check-icon {
    font-size: 4em;
  -webkit-text-fill-color: initial !important;   /* restore normal fill */
  -webkit-text-stroke: 0 !important;             /* remove stroke */
  text-stroke: 0 !important;                     /* remove any stroke (nonstandard) */
  text-shadow: none !important;                  /* remove fallback shadow */
  color: green !important;
  border:1px solid green;    
  border-radius:100%;                  
    /* Unique Animation: Spin on success */
    animation: spin 1.5s ease-out;
}

@keyframes spin {
    from { transform: rotate(290deg); opacity: 0;border:none; }
    to { transform: rotate(360deg); opacity: 1;
    border: none; }
}

.confirmation-message h3 {
    color: #0A1931;
    margin-bottom: 10px;
}

.confirmation-message p {
    color: #555;
}

/*
 * --- Footer ---
 */
.main-footer {
    background-color: #0A1931;
    color: #F7F7F7;
    padding: 40px 5% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #FFCC66;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.1em;
    letter-spacing: 1px;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #FFCC66;
    text-decoration: underline;
}

.footer-about .logo {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.social-icons a {
    font-size: 1.8em;
    margin-right: 15px;
    color: #F7F7F7;
}

.social-icons a:hover {
    color: #FFCC66;
}

.footer-newsletter form {
    display: flex;
    margin-top: 10px;
}

.footer-newsletter input {
    padding: 10px;
    border: none;
    flex-grow: 1;
    border-radius: 4px 0 0 4px;
}

.footer-newsletter button {
    background-color: #FFCC66;
    color: #0A1931;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.footer-newsletter button:hover {
    background-color: #fcc033;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a3258;
    font-size: 0.9em;
    color: #aaa;
}

/* Utility Class */
.hidden {
    display: none !important;
}





@media (max-width: 1900px) {
  
    html{
        font-size:90%;
    }
}

/*================mini desktop=================*/

@media (max-width: 1028px) {

    html{
        font-size:60%;
    }

}

/*
 * --- Mobile Responsiveness (Highly Responsive) ---
 */
@media (max-width: 992px) {

    html{
        font-size:90%;
    }


    .main-header {
        flex-wrap: wrap;
    }




    .search-container {
        order: 3; /* Move search below logo/nav on smaller screens */
        flex-basis: 100%;
        margin-top: 15px;
        max-width: none;
    }

    .main-nav {
        order: 2;
        margin-left: auto; /* Push nav to the right */
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {

html{
    font-size:80%;
}


    .main-header {
        padding: 10px 5%;
    }

    .logo {
        font-size: 1.8em;
       
    }

    #searchInput{
        font-size:1em;
    }

    .main-nav {
    position: fixed;
    top: 0;
    right: -100%; /* hidden offscreen initially */
    height: 100vh;
    width: 70%;
    background: #0a1931; /* dark navy tone */
    box-shadow: -4px 0 10px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    transition: right 0.4s ease-in-out;
    z-index: 1500;
    }

    .main-nav.open {
    right: 0; /* slides in from the right */
  }

  .nav-links {
    list-style: none;
    width: 100%;
    display:flex;
    flex-direction:column;
  }

  .nav-links li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.4s ease;
  }

  .main-nav.open .nav-links li {
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav.open .nav-links li:nth-child(1) { transition-delay: 0.1s; }
  .main-nav.open .nav-links li:nth-child(2) { transition-delay: 0.2s; }
  .main-nav.open .nav-links li:nth-child(3) { transition-delay: 0.3s; }
  .main-nav.open .nav-links li:nth-child(4) { transition-delay: 0.4s; }

  /* Hide cart icon when nav is open */
  .main-nav.open ~ .cart-icon-container {
    display: none;
  }

  /* Animate hamburger into an X */
  .fas.fa-bars.active {
    transform: rotate(90deg);
  }

  .fas.fa-bars.active::before {
    content: "\f00d"; /* Font Awesome X icon (times) */
  }



 .main-header   .fas.fa-bars {
    display: block;
    font-size:2rem;
  }

  .cart-modal-content {
    max-width:90vw;
}


 

    .hero-section {
        height: 50vh;
    }

    .hero-content {
        padding: 20px;
    }

    .product-modal-content {
    max-width: 99vh; /* Wider for product details */
   
}
#productDetailContent {
       flex-direction:column;
    }

    .detail-gallery, .detail-info {
        max-width: 100%;
    }

    .detail-info h2 {
        font-size:1.8em;
    }

    .detail-price {
         font-size: 1.2em;
    }

    .thumbnail-images {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }
    
    .cta-button {
        padding: 10px 20px;
    }

    .payment-options {
        flex-direction: column;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .item-quantity {
        margin-top: 10px;
    }
}