
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background:#fff;
     overflow-x: hidden;
}
body::-webkit-scrollbar {
    display: none;
}
html, body {
    overflow: auto;
    
    /* Firefox */
    scrollbar-width: none;

    /* IE / Edge */
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}
/* HEADER */
/* header{
    background:#fff;
    padding:20px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #ddd;
}

.logo{
    font-size:22px;
    font-weight:bold;
    letter-spacing:1px;
}

nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:#333;
    font-size:14px;
}
#menu-toggle{
    display:none;
}

.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:25px;
    height:2px;
    background:#333;
    transition:0.3s;
}


@media (max-width: 768px){

    header{
        padding:20px;
    }

    .hamburger{
        display:flex;
    }

    nav{
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#fff;
        max-height:0;
        overflow:hidden;
        transition:0.4s ease;
        border-top:1px solid #eee;
        z-index: 1;
    }

    nav ul{
        flex-direction:column;
        gap:20px;
        padding:20px 0;
        text-align:center;
    }

    #menu-toggle:checked ~ nav{
        max-height:400px;
    }

    #menu-toggle:checked + .hamburger span:nth-child(1){
        transform:rotate(45deg) translate(5px,5px);
    }

    #menu-toggle:checked + .hamburger span:nth-child(2){
        opacity:0;
    }

    #menu-toggle:checked + .hamburger span:nth-child(3){
        transform:rotate(-45deg) translate(5px,-5px);
    }
} */
/* MAIN SECTION */
.container{
    width:90%;
    margin:40px auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
}

/* LEFT SLIDER */
.slider{
    position:relative;
    overflow:hidden;
    border-radius:10px;
}

.slides{
    display:flex;
    transition:0.6s ease;
}

.slide{
    min-width:100%;
    height:420px;
    padding:60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#e4e8ed;
}

.slide img{
    height:100%;
    object-fit:cover;
}

.slide-text h2{
    font-size:32px;
    margin-bottom:10px;
}

.slide-text p{
    margin-bottom:20px;
}

.btn{
    padding:10px 18px;
    border:1px solid #000;
    text-decoration:none;
    color:#000;
    font-size:14px;
}

/* SLIDER BUTTONS */
.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#fff;
    border:none;
    padding:10px 14px;
    cursor:pointer;
    border-radius:50%;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.prev{ left:15px; }
.next{ right:15px; }

/* RIGHT SIDE BOXES */
.right{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.box{
    background:#dfe5eb;
    padding:40px;
    border-radius:10px;
    height:200px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.box img{
    height:100%;
}

.box h3{
    font-size:22px;
    margin-bottom:10px;
}

.box small{
    display:block;
    margin-bottom:15px;
}

/* FEATURES */
.features{
    width:90%;
    margin:20px auto 60px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

@media(max-width:900px){
    .features{
        display:flex;
        flex-direction: column;
    }
}

.feature-box{
    background:#fff;
    padding:25px;
    border-radius:10px;
    text-align:center;
    border:1px solid #eee;
}

.feature-box h4{
    margin-bottom:10px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .container{
        grid-template-columns:1fr;
    }
}
/* FLASH DEALS */
.flash-deals{
    width:90%;
    margin:60px auto;
}

.flash-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.flash-header h2{
    font-size:22px;
}

.filters span{
    margin:0 10px;
    cursor:pointer;
    font-size:14px;
}

.filters .active{
    font-weight:bold;
}

.view-all{
    font-size:14px;
    text-decoration:none;
    color:#000;
}

.product-wrapper{
    position:relative;
}

.product-container{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding-bottom:10px;
}

.product-container::-webkit-scrollbar{
    display:none;
}

.product-card{
    min-width:250px;
    background:#f2f2f2;
    border-radius:10px;
    padding:15px;
    position:relative;
    transition:0.3s;
}

.product-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:8px;
}

.sale-badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#000;
    color:#fff;
    font-size:12px;
    padding:5px 8px;
}

.product-info{
    margin-top:10px;
}

.product-info h4{
    font-size:14px;
    margin-bottom:6px;
}

.price .new{
    font-weight:bold;
    margin-right:10px;
}

.price .old{
    text-decoration:line-through;
    color:#888;
}

/* HOVER ADD TO CART */
.add-to-cart{
    position:absolute;
    bottom:-50px;
    left:0;
    width:100%;
    text-align:center;
    background:#000;
    color:#fff;
    padding:12px 0;
    transition:0.3s;
    cursor:pointer;
}

.product-card:hover .add-to-cart{
    bottom:0;
}

.product-card:hover{
    transform:translateY(-5px);
}

/* SCROLL BUTTONS */
.scroll-btn{
    position:absolute;
    top:40%;
    transform:translateY(-50%);
    background:#fff;
    border:none;
    padding:10px 14px;
    border-radius:50%;
    cursor:pointer;
    box-shadow:0 2px 8px rgba(0,0,0,0.15);
}

.scroll-btn.left{
    left:-20px;
}

.scroll-btn.right{
    right:-20px;
}
/* LOVE SECTION */
.love-section{
    width:90%;
    margin:60px auto;
    background:#e9e9e9;
    border-radius:12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:60px;
}

.love-content h2{
    font-size:32px;
    margin-bottom:10px;
}

.love-content p{
    margin-bottom:20px;
}

.shop-btn{
    text-decoration:none;
    border:1px solid #000;
    padding:10px 18px;
    font-size:14px;
    color:#000;
}

.love-image img{
    height:320px;
    object-fit:contain;
}
.love-section{
    width:90%;
    margin:40px auto;
}

.love-container{
    background:#dcdcdc;
    border-radius:12px;
    padding:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.love-text h1{
    font-size:30px;
    letter-spacing:1px;
    margin-bottom:15px;
}

.love-text p{
    color:#444;
    margin-bottom:20px;
}

.love-text a{
    text-decoration:none;
    border-bottom:1px solid #000;
    color:#000;
    font-size:14px;
}

.love-image img{
    height:320px;
}

/* ================= TOP SELLERS ================= */

.top-section{
    width:90%;
    margin:50px auto;
}

.top-header h2{
    font-size:18px;
    margin-bottom:25px;
}

.top-wrapper{
    position:relative;
}

.product-slider{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
}

.product-slider::-webkit-scrollbar{
    display:none;
}

/* PRODUCT CARD SAME SIZE */

.product-card{
    min-width:230px;
}

.image-box{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    background:#fff;
}

.image-box img{
    width:100%;
    height:340px;
    object-fit:cover;
    transition:0.4s ease;
}

/* FAVORITE BUTTON */

.fav{
    position:absolute;
    top:12px;
    right:12px;
    background:#fff;
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 2px 6px rgba(0,0,0,0.2);
    z-index:2;
}

.fav.active{
    background:#000;
    color:#fff;
}

/* BADGE */

.badge{
    position:absolute;
    top:12px;
    left:12px;
    background:#000;
    color:#fff;
    padding:5px 8px;
    font-size:11px;
}

.badge.new{
    background:#eee;
    color:#000;
}

/* ADD TO CART */

.cart{
    position:absolute;
    bottom:-50px;
    left:0;
    width:100%;
    background:#000;
    color:#fff;
    text-align:center;
    padding:12px;
    font-size:13px;
    transition:0.3s ease;
    cursor:pointer;
}

.image-box:hover .cart{
    bottom:0;
}

.image-box:hover img{
    transform:scale(1.05);
}

/* TEXT */

.product-card h4{
    font-size:14px;
    margin:12px 0 6px;
}

.rating{
    font-size:13px;
}

.rating span{
    color:#888;
    margin-left:5px;
}

.price{
    margin-top:6px;
}

.price .new{
    font-weight:bold;
}

.price .old{
    text-decoration:line-through;
    color:#888;
    margin-left:8px;
}

/* NAVIGATION BUTTONS */

.nav-btn{
    position:absolute;
    top:40%;
    transform:translateY(-50%);
    background:#fff;
    border:none;
    width:40px;
    height:40px;
    border-radius:50%;
    cursor:pointer;
    box-shadow:0 2px 8px rgba(0,0,0,0.15);
    z-index: 1;
}

.nav-btn.left{ left:-20px; }
.nav-btn.right{ right:-20px; }

{
    width:92%;
    margin:40px auto;
}

.hero-container{
    background:#dcdcdc;
    border-radius:12px;
    padding:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.hero-text h1{
    font-size:30px;
    margin-bottom:15px;
    letter-spacing:1px;
}

.hero-text p{
    color:#444;
    margin-bottom:20px;
}

.hero-text a{
    text-decoration:none;
    border-bottom:1px solid #000;
    color:#000;
    font-size:14px;
}

.hero-image img{
    height:320px;
    width: 100%;
}

/* ================= PRODUCTS SECTION ================= */

.products-section{
    width:90%;
    margin:50px auto;
}

.section-header h2{
    font-size:18px;
    margin-bottom:25px;
}

.slider-wrapper{
    position:relative;
}

.product-slider{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
}

.product-slider::-webkit-scrollbar{
    display:none;
}

/* PRODUCT CARD SAME SIZE */

.product-card{
    min-width:230px;
    max-width: 230px;
}

/* IMAGE */

.image-wrapper{
    position:relative;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
}

.image-wrapper img{
    width:100%;
    height:340px;
    object-fit:cover;
    transition:0.4s ease;
}

/* FAVORITE BUTTON */

.favorite{
    position:absolute;
    top:12px;
    right:12px;
    width:36px;
    height:36px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 2px 6px rgba(0,0,0,0.2);
    z-index:2;
}

.favorite.active{
    background:#000;
    color:#fff;
}

/* BADGES */

.badge{
    position:absolute;
    top:12px;
    left:12px;
    padding:5px 8px;
    font-size:11px;
    color:#fff;
}

.badge.sale{ background:#000; }
.badge.new{ background:#eee; color:#000; }

/* ADD TO CART */

.cart-btn{
    position:absolute;
    bottom:-50px;
    left:0;
    width:100%;
    background:#000;
    color:#fff;
    text-align:center;
    padding:12px;
    font-size:13px;
    transition:0.3s ease;
    cursor:pointer;
}

.image-wrapper:hover .cart-btn{
    bottom:0;
}

.image-wrapper:hover img{
    transform:scale(1.05);
}

/* TEXT */

.product-card h4{
    font-size:14px;
    margin:12px 0 6px;
}

.rating{
    font-size:13px;
}

.rating span{
    color:#888;
    margin-left:5px;
}

.price{
    margin-top:6px;
}

.price .old{
    text-decoration:line-through;
    color:#888;
    margin-left:8px;
}

/* SLIDER BUTTONS */

.slider-btn{
    position:absolute;
    top:40%;
    transform:translateY(-50%);
    width:40px;
    height:40px;
    border-radius:50%;
    border:none;
    background:#fff;
    cursor:pointer;
    box-shadow:0 2px 8px rgba(0,0,0,0.15);
    z-index: 1;
}

.slider-btn.left{ left:-20px; }
.slider-btn.right{ right:-20px; }
.promo-section {
width:90%;
margin:50px auto;
  background: #f5f5f5;
}

/* 3 equal columns */
.promo-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Box styling */
.promo-box {
  position: relative;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Background colors */
.bg-one { background: #e7e4d7; }
.bg-two { background: #dde3ea; }
.bg-three { background: #e9e1e1; }

/* Text */
.promo-box h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.shop-link {
  font-size: 14px;
  text-decoration: underline;
  color: #000;
  font-weight: 500;
}

/* Image bottom right */
.promo-box img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 60%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
  .promo-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .promo-container {
    grid-template-columns: 1fr;
  }

  .promo-box {
    height: 280px;
    padding: 25px;
  }

  .promo-box h2 {
    font-size: 18px;
  }
}

.category-section {
    width:90%;
    margin:50px auto;
    background: #f5f5f5;
    padding: 20px;
}


/* Heading */
.section-title {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

/* Grid layout */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

/* Category item */
.category-item {
  text-align: center;
  cursor: pointer;
}

/* Image box */
.category-image {
  background: #eeeeee;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Image */
.category-image img {
  max-width: 90%;
  max-height: 90%;
  transition: transform 0.4s ease;
}

/* Zoom on hover */
.category-item:hover img {
  transform: scale(1.1);
}

/* Title */
.category-item h3 {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* -------- Responsive -------- */

/* Large tablets */
@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-image {
    height: 200px;
  }
}
.hero-section{
    width:90%;
    margin:40px auto;
}

.hero-container{
    background:#dcdcdc;
    border-radius:12px;
    padding:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.hero-text h1{
    font-size:30px;
    margin-bottom:15px;
    letter-spacing:1px;
}

.hero-text p{
    color:#444;
    margin-bottom:20px;
}

.hero-text a{
    text-decoration:none;
    border-bottom:1px solid #000;
    color:#000;
    font-size:14px;
}

.hero-image img{
    height:320px;
}
.features-section {
    padding: 35px 60px;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.features-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 26px;
}

.feature-box h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 13px;
    color: #555;
}


/* ================= NEWSLETTER SECTION ================= */

.newsletter-section {
    padding: 35px 60px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.newsletter-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    align-items: center;
    gap: 40px;
}

/* Left text */
.newsletter-left h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.newsletter-left p {
    font-size: 13px;
    color: #555;
}

/* Middle form */
.newsletter-middle form {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    max-width: 400px;
}

.newsletter-middle input {
    flex: 1;
    padding: 12px;
    border: none;
    font-size: 13px;
    outline: none;
}

.newsletter-middle button {
    width: 50px;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
}

/* Right social icons */
.newsletter-right {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.newsletter-right a {
    width: 38px;
    height: 38px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-middle form {
        margin: 20px auto;
    }

    .newsletter-right {
        justify-content: center;
    }
}

@media (max-width: 576px) {

    .features-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .features-section,
    .newsletter-section {
        padding: 25px 20px;
    }
}
/* ================= FOOTER ================= */

.footer {
    background: #f5f5f5;
    padding-top: 50px;
    border-top: 1px solid #ddd;
}

/* Container */
.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 60px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

/* Logo */
.footer-logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-style: italic;
    font-weight: 400;
}

/* Text */
.footer-col p {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Headings */
.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Links */
.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #777;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 60px;
}

.footer-bottom-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Bottom Links */
.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.footer-links a:hover {
    color: #777;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 30px 30px;
    }

    .footer-bottom {
        padding: 20px 30px;
    }
}

@media (max-width: 600px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}
.cart-item {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #e63946;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}
.scroll-container {
    max-height: 400px;
    overflow: hidden; /* Hide scrollbar normally */
}

/* Show scrollbar on hover */
.scroll-container:hover {
    overflow-y: auto;
}
/* ===== Header Layout ===== */
.main-header {
    padding: 18px 40px;
    position: relative;
    border-bottom: 1px solid #ddd;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    gap: 30px;
}

.header-left a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    font-size: 20px;
    letter-spacing: 2px;
    text-decoration: none;
    color: #000;
}

.logo span {
    font-style: italic;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon {
    text-decoration: none;
    font-size: 18px;
    color: #000;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    font-size: 10px;
    background: #000;
    color: #fff;
    padding: 2px 6px;
    border-radius: 50%;
}

/* Hamburger */
.menu-lines {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-lines span {
    width: 22px;
    height: 2px;
    background: #000;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100%;
    background: #fff;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s ease;
    z-index: 1000;
}

.mobile-menu.active {
    left: 0;
}

/* ===== Cart Sidebar ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

#overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .header-left {
        display: none;
    }

    .menu-lines {
        display: flex;
    }
    .header-center {
        left: 80%;
    }
}
.account-wrapper {
    max-width: 500px;
    margin: 80px auto;
    padding: 20px;
    text-align: center;
}

/* Title */
.account-wrapper h1 {
    font-size: 34px;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

/* Tabs */
.tabs {
    display: flex;
    margin-bottom: 40px;
    border: 1px solid #000;
}

.tabs button {
    flex: 1;
    padding: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
}

.tabs button.active {
    background: #111;
    color: #fff;
}

/* Sub Text */
.subtitle {
    margin-bottom: 30px;
}

.subtitle h3 {
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.subtitle p {
    font-size: 13px;
    color: #555;
}

/* Form */
.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
    background: #fff;
}

/* Password toggle */
.password-wrapper {
    position: relative;
}

.password-wrapper span {
    position: absolute;
    right: 15px;
    top: 65%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 14px;
}

/* Remember */
.remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Button */
.btn {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 20px;
}

.btn:hover {
    opacity: 0.85;
}

/* Lost password */
.lost-password {
    font-size: 13px;
    text-decoration: none;
    color: #000;
}

/* Hidden */
.hidden {
    display: none;
}

/* Responsive */
@media(max-width:600px){
    .account-wrapper {
        margin: 50px 20px;
    }
}
.header {
    background: #d9e0e3;
    padding: 18px 40px;
    position: relative;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    gap: 35px;
}

.nav-left a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
}

/* Logo Center */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    letter-spacing: 2px;
}

/* ============================= */
/* MEGA MENU */
/* ============================= */

.collections {
    /* position: relative; */
}

/* Extend hover area to avoid gap */
.collections > a {
    display: inline-block;
    padding-bottom: 25px;
}

/* Mega Container */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 49%;
    transform: translateX(-50%) translateY(20px);

    width: 100vw;
    max-width: 100vw;

    background: #fff;
    padding: 70px 100px;

    box-shadow: 0 15px 30px rgba(0,0,0,0.05);

    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;

    z-index: 999;
}

/* Show Mega Menu */
.collections:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Inner Content */
.mega-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* Left Section */
.mega-left {
    width: 50%;
}

.mega-left h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

/* Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 80px;
}

.collection-grid a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: 0.3s;
}

.collection-grid a:hover {
    opacity: 0.6;
}

/* Right Image */
.mega-right {
    width: 40%;
}

.mega-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        padding: 30px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    /* On mobile we will show using JS class */
    .collections.active .mega-menu {
        display: block;
    }

    .mega-content {
        flex-direction: column;
        gap: 30px;
    }

    .mega-left,
    .mega-right {
        width: 100%;
    }

}
.container1 {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    
}

/* =========================
   BREADCRUMB + PROGRESS
========================= */

.top-section {
    text-align: center;
    padding: 40px 0 20px;
}

.breadcrumb {
    font-size: 14px;
    letter-spacing: 1px;
    color: #777;
}

.progress-wrapper {
    margin-top: 20px;
}

.progress-bar {
    height: 4px;
    background: #000;
    width: 100%;
    position: relative;
}

.progress-bar span {
    position: absolute;
    right: 0;
    top: -22px;
    font-size: 14px;
}

/* =========================
   CART LAYOUT
========================= */

.cart-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;
    padding-bottom: 40px;
}

/* =========================
   LEFT SIDE - PRODUCTS
========================= */

.cart-left {
    flex: 2;
}

.cart-left h2 {
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 1px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}

.cart-item-left {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 80%;
}

.cart-item img {
    width: 70px;
    height: 100px;
    object-fit: cover;
}

.product-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 500;
}

.product-info p {
    font-size: 13px;
    color: #666;
}

.price,
.total {
    width: 90px;
    text-align: center;
    font-size: 14px;
}

.quantity input {
    width: 50px;
    padding: 5px;
    text-align: center;
}

.delete {
    cursor: pointer;
    font-size: 18px;
    color: #aaa;
}

.delete:hover {
    color: #000;
}

/* =========================
   COUPON
========================= */

.coupon-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.coupon-wrapper input {
    flex: 1;
    padding: 14px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.coupon-wrapper button {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 30px;
    cursor: pointer;
    letter-spacing: 1px;
}

.coupon-wrapper button:hover {
    opacity: 0.8;
}

/* =========================
   RIGHT SIDE - SUMMARY
========================= */

.cart-right {
    flex: 1;
    background: #fff;
    padding: 30px;
    border: 1px solid #ddd;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 14px;
}

.summary-row.grand-total {
    font-weight: bold;
    font-size: 16px;
}

.checkout-btn {
    margin-top: 20px;
    width: 100%;
    padding: 16px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
}

.checkout-btn:hover {
    opacity: 0.8;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .cart-wrapper {
        flex-direction: column;
    }

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

    .price,
    .total {
        width: auto;
        text-align: left;
    }

    .cart-right {
        width: 100%;
    }

    .coupon-wrapper {
        flex-direction: column;
    }

}


.container2{
    width:90%;
    max-width:1400px;
    margin:40px auto;
}

/* ==============================
   TOP BREADCRUMB
================================= */

.breadcrumb{
    text-align:center;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:40px;
    color:#666;
}

/* ==============================
   MAIN LAYOUT
================================= */

.checkout-wrapper{
    display:flex;
    gap:50px;
    align-items:flex-start;
}

/* ==============================
   LEFT SIDE (FORM)
================================= */

.checkout-left{
    flex:1.4;
    max-height:85vh;
    overflow-y:auto;
    padding-right:20px;
}

.checkout-left h3{
    margin:30px 0 20px;
    font-weight:500;
    letter-spacing:1px;
}

.login-text{
    margin-bottom:20px;
    font-size:14px;
}

.login-text span{
    text-decoration:underline;
    cursor:pointer;
}

.form-group{
    margin-bottom:18px;
}

.form-row{
    display:flex;
    gap:20px;
}

.form-row .form-group{
    flex:1;
}

label{
    font-size:13px;
    margin-bottom:6px;
    display:block;
}

input, select, textarea{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    font-size:14px;
}

textarea{
    resize:vertical;
    min-height:80px;
}

.checkbox-group{
    display:flex;
    align-items:center;
    gap:10px;
    margin:15px 0;
}

.checkbox-group input{
    width:auto;
}

/* ==============================
   RIGHT SIDE (ORDER SUMMARY)
================================= */

.checkout-right{
    flex:1;
    position:sticky;
    top:40px;
}

.summary-box{
    background:#fff;
    padding:30px;
    border:1px solid #ddd;
    margin-bottom:20px;
}

.summary-box h4{
    margin-bottom:20px;
    font-weight:500;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
    font-size:14px;
}

.summary-row.total{
    font-weight:bold;
    font-size:16px;
}

.shipping-options label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
}

.payment-box{
    background:#fff;
    padding:25px;
    border:1px solid #ddd;
}

.payment-box p{
    font-size:13px;
    color:#555;
    margin:10px 0;
}

.place-order{
    width:100%;
    margin-top:15px;
    padding:15px;
    background:#000;
    color:#fff;
    border:none;
    cursor:pointer;
    letter-spacing:1px;
}

.place-order:hover{
    opacity:0.85;
}

/* ==============================
   RESPONSIVE
================================= */

@media(max-width:992px){

    .checkout-wrapper{
        flex-direction:column;
    }

    .checkout-left{
        max-height:none;
        overflow:visible;
    }

    .checkout-right{
        position:relative;
        top:0;
    }

    .form-row{
        flex-direction:column;
    }
}

.container3{
    width:92%;
    max-width:1400px;
    margin:50px auto;
}

/* =========================
   LAYOUT
========================= */

.product-wrapper{
    display:flex;
    gap:80px;
    align-items:flex-start;
}

/* =========================
   GALLERY
========================= */

.gallery-section{
    flex:1.3;
    display:flex;
    gap:20px;
    position:sticky;
    top:40px;
}

/* Thumbnails */

.thumbnails{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.thumbnails img{
    width:80px;
    cursor:pointer;
    border:1px solid transparent;
    transition:.3s;
}

.thumbnails img.active{
    border:1px solid #000;
}

/* Main Image */

.main-image{
    flex:1;
}

.main-image img{
    width:100%;
    cursor:pointer;
}

/* =========================
   PRODUCT INFO
========================= */

.product-info{
    flex:1;
}

.product-info h1{
    font-size:30px;
    font-weight:500;
    margin-bottom:15px;
}

.price{
    font-size:18px;
    margin-bottom:30px;
}

select, input[type="number"]{
    width:100%;
    padding:14px;
    border:1px solid #ccc;
    margin-bottom:20px;
    font-size:14px;
}
.remember-check{
    width: 3%;
}
    

.qty-cart{
    display:flex;
    gap:15px;
}

.qty-cart input{
    width:80px;
    text-align:center;
}

.add-cart{
    flex:1;
    background:#999;
    color:#fff;
    border:none;
    letter-spacing:1px;
    cursor:pointer;
    transition:.3s;
}

.add-cart:hover{
    background:#000;
}

.wishlist{
    margin-top:15px;
    font-size:14px;
    cursor:pointer;
}

.wishlist.active{
    color:red;
}

.size-chart-btn{
    font-size:14px;
    margin-top:10px;
    text-decoration:underline;
    cursor:pointer;
    display:inline-block;
}

/* =========================
   ACCORDION
========================= */

.accordion{
    margin-top:40px;
    border-top:1px solid #ddd;
}

.accordion-item{
    border-bottom:1px solid #ddd;
}

.accordion-header{
    padding:18px 0;
    display:flex;
    justify-content:space-between;
    cursor:pointer;
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    font-size:14px;
    color:#555;
}

/* =========================
   LIGHTBOX
========================= */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.9);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:2000;
}

.lightbox.active{
    opacity:1;
    visibility:visible;
}

.lightbox img{
    max-width:80%;
    max-height:85%;
}

.lightbox-close{
    position:absolute;
    top:30px;
    right:40px;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

.lightbox-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:40px;
    color:#fff;
    cursor:pointer;
    user-select:none;
}

.prev{ left:40px; }
.next{ right:40px; }

/* =========================
   SIZE CHART SIDEBAR
========================= */

.size-chart-sidebar{
    position:fixed;
    top:0;
    right:-500px;
    width:400px;
    height:100%;
    background:#fff;
    padding:40px;
    box-shadow:-5px 0 20px rgba(0,0,0,0.1);
    transition:.4s;
    z-index:2100;
    overflow:auto;
}

.size-chart-sidebar.active{
    right:0;
}

.size-close{
    position:absolute;
    top:20px;
    right:25px;
    font-size:22px;
    cursor:pointer;
}

.size-chart-sidebar h2{
    margin-bottom:20px;
}

.size-chart-sidebar table{
    width:100%;
    border-collapse:collapse;
}

.size-chart-sidebar th,
.size-chart-sidebar td{
    border:1px solid #ddd;
    padding:10px;
    text-align:center;
    font-size:14px;
}

/* Overlay */

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.4);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:2000;
}

.overlay.active{
    opacity:1;
    visibility:visible;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .product-wrapper{
        flex-direction:column;
    }

    .gallery-section{
        position:relative;
        top:0;
        flex-direction:column;
    }

    .thumbnails{
        flex-direction:row;
    }

    .thumbnails img{
        width:60px;
    }

}
/* ===============================
   Return & Cancellation Policy
================================ */

.policy-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
}

.policy-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #222;
    position: relative;
}

.policy-section h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #e91e63;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.policy-card {
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 10px;
    background: #fafafa;
    transition: all 0.3s ease;
    border-left: 4px solid #e91e63;
}

.policy-card:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.policy-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.policy-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.policy-card ul {
    padding-left: 18px;
}

.policy-card ul li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
}

.policy-contact {
    background: #fce4ec;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.policy-contact ul {
    list-style: none;
    padding-left: 0;
}

.policy-contact li {
    margin-bottom: 8px;
    font-size: 14px;
}

.policy-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #888;
}

.shoppageContainer {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.shoppageBreadcrumb {
    font-size: 13px;
    margin-bottom: 15px;
}

.shoppageBreadcrumb a {
    color: #555;
    text-decoration: none;
}

.shoppageTitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.shoppageWrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Sidebar */
.shoppageSidebar {
    flex: 0 0 250px;
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0,0,0,0.08);
}

.shoppageClearFilter {
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
    cursor: pointer;
    color: #007bff;
}

.shoppageAccordionItem h5 {
    font-size: 15px;
    cursor: pointer;
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.shoppageAccordionItem h5::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 18px;
}

.shoppageAccordionItem h5.active::after {
    content: '-';
}

.shoppageAccordionContent {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 10px;
}

.shoppageAccordionContent label {
    display: block;
    margin: 7px 0;
    cursor: pointer;
    font-size: 14px;
}

/* Price filter */
.shoppagePriceFilter input[type=range] {
    width: 100%;
}


/* Main Content */
.shoppageMainContent {
    flex: 1;
}

.shoppageTopBar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.shoppageTopBar select {
    padding: 6px 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Product Grid */
.shoppageProductGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.shoppageProductCard {
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.08);
    text-align: center;
    padding: 10px;
}

.shoppageProductCard img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.shoppageProductCard h6 {
    font-size: 16px;
    margin: 10px 0;
}

.shoppageProductPrice {
    color: #007bff;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 1024px) {
    .shoppageProductGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shoppageWrapper {
        flex-direction: column;
    }
    .shoppageSidebar {
        flex: 1;
    }
    .shoppageProductGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .shoppageProductGrid {
        grid-template-columns: 1fr;
    }
}
.shoppagePriceValues {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 5px;
    align-items: center;
}

#priceCurrent {
    font-weight: bold;
    color: #007bff;
}
.range-slider {
    position: relative;
    height: 6px;
    margin: 10px 0;
}

.range-slider input[type=range] {
    position: absolute;
    width: 100%;
    pointer-events: none; /* both sliders overlap */
    -webkit-appearance: none;
    height: 6px;
    background: transparent;
}

.range-slider input[type=range]::-webkit-slider-thumb {
    pointer-events: all;
    width: 16px;
    height: 16px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none;
    border: none;
    margin-top: -5px;
}

.range-slider input[type=range]::-moz-range-thumb {
    pointer-events: all;
    width: 16px;
    height: 16px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.range-slider input[type=range]::-webkit-slider-runnable-track {
    height: 6px;
    background: #ddd;
    border-radius: 3px;
}

.range-slider input[type=range]::-moz-range-track {
    height: 6px;
    background: #ddd;
    border-radius: 3px;
}

.shoppageAccordionContent label {
    display: flex;
    justify-content: space-between;  /* pushes text left & checkbox right */
    align-items: center;
    margin: 6px 0;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
}

.shoppageAccordionContent input[type="checkbox"] {
    order: 2;               /* move checkbox to right */
    margin: 0;
    transform: scale(1);
}
.productImageSlider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.sliderImages {
    width: 100%;
    height: 100%;
    position: relative;
}

.sliderImages img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sliderImages img.activeSlide {
    opacity: 1;
}

.sliderArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    z-index: 2;

     opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.productImageSlider:hover .sliderArrow {
    opacity: 1;
    visibility: visible;
}

.sliderArrowLeft {
    left: 8px;
}

.sliderArrowRight {
    right: 8px;
}

.sliderArrow:hover {
    background: rgba(0,0,0,0.8);
}

.shoppageProductPrice {
    font-weight: bold;
    margin-top: 8px;
}
.account-section-wrapper {
    font-family: 'Segoe UI', sans-serif;
    background: #f6f6f6;
    padding: 40px 20px;
}

.account-section-container {
    max-width: 1200px;
    margin: auto;
}

.account-section-title {
    text-align: center;
    font-size: 32px;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.account-section-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #e9e9e9;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.account-section-tab-btn {
    background: transparent;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.account-section-tab-btn:hover,
.account-section-tab-btn.active {
    background: #000;
    color: #fff;
    border-radius: 4px;
}

.account-section-content {
    display: none;
    animation: fadeEffect 0.4s ease-in-out;
}

.account-section-content.active {
    display: block;
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

.account-section-address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.account-section-card {
    background: #fff;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.account-section-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.account-section-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: 0.3s;
}

.account-section-btn:hover {
    background: #444;
}

.account-section-table {
    width: 100%;
    border-collapse: collapse;
}

.account-section-table th,
.account-section-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.account-section-table th {
    background: #f0f0f0;
}

/* Responsive */
@media(max-width: 768px) {
    .account-section-address-grid {
        grid-template-columns: 1fr;
    }

    .account-section-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .account-section-tab-btn {
        width: 100%;
        text-align: center;
    }
}
