/* =====================================
   GLOBAL DESIGN TOKENS
===================================== */

:root{

  /* ---------- COLORS ---------- */

  --primary-color: #073065;
  --secondary-color: #b06219;

  --text-color: #000000;
  --text-muted: #666666;

  --white-color: #ffffff;
  --black-color: #000000;

  --bg-color: #ffffff;
  --light-bg: #f5f5f5;
  --section-bg: #fafafa;

  --border-color: #dddddd;

  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #0dcaf0;

  --overlay-bg: rgba(0,0,0,0.45);


  /* ---------- TYPOGRAPHY (NON-HEADINGS) ---------- */

  --font-family-base: 'Poppins', sans-serif;

  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-xs: 12px;

  --line-height-base: 1.6;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;


  /* ---------- SPACING ---------- */

  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;


  /* ---------- RADIUS ---------- */

  --radius-xs: 3px;
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 50px;


  /* ---------- SHADOWS ---------- */

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);


  /* ---------- TRANSITIONS ---------- */

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s ease;


  /* ---------- Z-INDEX ---------- */

  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1050;
  --z-overlay: 1100;

}



/* =====================================
   GLOBAL BASE RESET
===================================== */

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media print {
  body * {
    visibility: hidden;
  }

  #invoice-main, #invoice-main * {
    visibility: visible;
  }

  #invoice-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
}


html{
  scroll-behavior: smooth;
}

body{
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-color);
  background: var(--bg-color);
}

img{
  max-width: 100%;
  display: block;
}

a{
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover{
  color: var(--primary-color);
}

p{
  margin-bottom: var(--space-md);
}

small{
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}



/* =====================================
   BUTTONS
===================================== */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-primary{
  background: var(--primary-color);
  color: var(--white-color);
}

.btn-primary:hover{
  background: #0b5ed7;
}

.btn-outline-primary{
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover{
  background: var(--primary-color);
  color: var(--white-color);
}



/* =====================================
   FORMS
===================================== */

input,
select,
textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-size: 14px;
  font-family: var(--font-family-base);
}

input:focus,
select:focus,
textarea:focus{
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(13,110,253,0.15);
}



/* =====================================
   CARDS
===================================== */

.card{
  background: var(--white-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-lg);
}



/* =====================================
   UTILITIES
===================================== */

.text-primary{ color: var(--primary-color); }
.text-secondary{ color: var(--secondary-color); }
.text-muted{ color: var(--text-muted); }

.bg-primary{ background: var(--primary-color); }
.bg-secondary{ background: var(--secondary-color); }
.bg-light{ background: var(--light-bg); }

.radius-sm{ border-radius: var(--radius-sm); }
.radius-md{ border-radius: var(--radius-md); }
.radius-lg{ border-radius: var(--radius-lg); }

.shadow-sm{ box-shadow: var(--shadow-sm); }
.shadow-md{ box-shadow: var(--shadow-md); }
.shadow-lg{ box-shadow: var(--shadow-lg); }

.mt-1{ margin-top: var(--space-xs); }
.mt-2{ margin-top: var(--space-sm); }
.mt-3{ margin-top: var(--space-md); }
.mt-4{ margin-top: var(--space-lg); }

.mb-1{ margin-bottom: var(--space-xs); }
.mb-2{ margin-bottom: var(--space-sm); }
.mb-3{ margin-bottom: var(--space-md); }
.mb-4{ margin-bottom: var(--space-lg); }

.pt-1{ padding-top: var(--space-xs); }
.pt-2{ padding-top: var(--space-sm); }
.pt-3{ padding-top: var(--space-md); }
.pt-4{ padding-top: var(--space-lg); }

.pb-1{ padding-bottom: var(--space-xs); }
.pb-2{ padding-bottom: var(--space-sm); }
.pb-3{ padding-bottom: var(--space-md); }
.pb-4{ padding-bottom: var(--space-lg); }

/* ---------------- DESKTOP ---------------- */

.bme-logo {
  max-width: 125px;
}

.bme-search input {
  height: 42px;
  border: 1px solid var(--border-color);
}

.bme-search button {
  width: 45px;
  border: 1px solid var(--border-color);
  background: var(--light-bg);
}

.bme-cart {
  border: 1px solid var(--primary-color);
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.bme-cart small {
  background: var(--danger-color);
  color: var(--white-color);
  font-size: 11px;
  padding: 2px 5px;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  right: -8px;
}

.bme-account {
  display: flex;
  align-items: center;
  gap: 0px;
  cursor: pointer;
  position: relative;
  padding: 15px 0;
}

.bme-account i:first-child {
  font-size: 22px;
}

.account-dropdown {
  position: absolute;
  top: 95%;
  right: 0;
  width: 135px;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  display: none;
  z-index: 999;
  text-align: center;
}

.bme-account:hover .account-dropdown {
  display: block;
}

.account-dropdown a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: var(--text-color);
  border-bottom: 1px dashed #eee;
}

.account-dropdown a:hover {
  color: var(--secondary-color);
}

/* NAV */

.nav-link {
  font-weight: 500;
  color: var(--text-color);
}

.nav-link:hover {
  color: var(--secondary-color);
}

/* ---------------- HAMBURGER ---------------- */

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text-color);
  border-radius: 2px;
}

/* ---------------- OFFCANVAS ---------------- */

@media(max-width:991px) {

  /* Top Row */
  .mobile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Hide text */
  .bme-cart span,
  .bme-account span,
  .bme-account i:last-child {
    display: none;
  }

  /* Icon sizes */
  .bme-cart i {
    font-size: 24px;
  }

  .bme-account i:first-child {
    font-size: 26px;
  }

  .bme-cart {
    border: none;
    padding: 0;
  }

  .bme-cart small {
    top: -6px;
    right: -6px;
  }

  /* Hamburger visible */
  .mobile-toggle {
    display: flex;
  }

  /* Search Full Width */
  .mobile-search {
    width: 100%;
    margin-top: 12px;
  }

  /* Offcanvas Menu */
  #mainMenu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--white-color);
    padding: 60px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    z-index: 2000;
  }

  #mainMenu.show {
    right: 0;
  }

  #mainMenu .navbar-nav {
    flex-direction: column;
    gap: 18px;
  }

  /* Overlay */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay-bg);
    display: none;
    z-index: 1500;
  }

  .menu-overlay.show {
    display: block;
  }

}

/* Show / Hide Layouts */

.desktop-header {
  display: block;
  padding: 10px 0;
}

.mobile-header {
  display: none;
}

@media(max-width:991px) {
  .desktop-header { display: none; }
  .mobile-header { display: block; }
}

/* product-listing */

.section-header{
  max-width: 800px;
  width: 100%;
  margin: auto;
  padding: 50px 0;
  text-align: center;
}

.section-title {
    text-align: center; 
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #073065 0%, #b06219 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.section-description{
  color: #707070;
  font-weight: 600;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-image.primary {
    opacity: 1;
}

.product-image.secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .product-image.primary {
    opacity: 0;
    transform: scale(1.1);
}

.product-card:hover .product-image.secondary {
    opacity: 1;
    transform: scale(1);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #073065 0%, #b06219 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.product-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title-wrapper {
    margin-bottom: 12px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    transition: all 0.3s ease;
}

.product-title-wrapper a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-title-wrapper a:hover .product-title {
    color: #667eea;
}

.product-description {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.stars {
    color: #f39c12;
    font-size: 0.85rem;
}

.rating-count {
    color: #95a5a6;
    font-size: 0.85rem;
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 18px;
}

.price-current {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #073065 0%, #b06219 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.price-original {
    font-size: 1rem;
    color: #bdc3c7;
    text-decoration: line-through;
    transition: all 0.3s ease;
}

.price-save {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.btn-container {
    display: flex;
    gap: 10px;
}

.btn-add-to-cart {
    flex: 1;
    background: linear-gradient(135deg, #073065 0%, #b06219 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-add-to-cart:hover{
    color:#fff;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-add-to-cart:active {
    transform: translateY(0);
}

.btn-add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
    z-index: 1;
}

.btn-add-to-cart:hover::before {
    left: 100%;
}

.btn-wishlist {
    width: 45px;
    height: 45px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc3c7;
    font-size: 1.1rem;
}

.btn-wishlist:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: #ffe5e5;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .product-image-wrapper {
        height: 240px;
    }

    .product-content {
        padding: 18px;
    }

    .price-section {
        flex-wrap: wrap;
    }

    .price-save {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}

.container-fluid {
    padding: 0;
}

.row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 32px;
}


/* short-section */

.pb-section{
    padding-top: 100px;
}

/* GRID */
.pb-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:40px;
}

/* CARD */
.pb-card{
    background:linear-gradient(135deg, #073065 0%, #b06219 100%);
    border-radius:20px;
    padding:50px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:320px;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(245,166,35,0.2);
    transition:all .4s cubic-bezier(.175,.885,.32,1.275);
    animation:pb-slideUp .6s ease-out;
}

.pb-card:nth-child(2){
    animation-delay:.2s;
}

.pb-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(245,166,35,.3);
}

/* DECORATION */
.pb-card::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.pb-card::after{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.03);
    border-radius:50%;
    bottom:-50px;
    left:-50px;
}

/* CONTENT */
.pb-content{
    flex:1;
    z-index:2;
}

.pb-title{
    font-size:3.5rem;
    font-weight:700;
    color:#fff;
    line-height:1.1;
    margin-bottom:35px;
    letter-spacing:-1px;
}

/* BUTTON */
.pb-btn{
    display:inline-block;
    background:linear-gradient(135deg,#1a3a52,#234568);
    color:#fff;
    padding:16px 32px;
    border-radius:8px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    text-decoration:none;
    border:none;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(26,58,82,.3);
    transition:.3s;
}

.pb-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(26,58,82,.4);
}

/* IMAGE */
.pb-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    padding-left:30px;
    z-index:2;
}

.pb-image img{
    max-width:100%;
    max-height:280px;
    object-fit:contain;
    filter:drop-shadow(0 10px 30px rgba(0,0,0,.15));
    transition:.4s;
}

.pb-card:hover .pb-image img{
    transform:scale(1.08) translateY(-5px);
}

/* ---------------- RESPONSIVE ---------------- */

@media(max-width:1024px){
    .pb-grid{grid-template-columns:1fr;}
    .pb-title{font-size:2.8rem;}
}

@media(max-width:768px){
    .pb-card{
        flex-direction:column;
        text-align:center;
    }

    .pb-image{
        padding-left:0;
        margin-top:20px;
    }

    .pb-title{font-size:2.2rem;}
}

@media(max-width:480px){
    .pb-title{font-size:1.8rem;}
}

/* ANIMATION */
@keyframes pb-slideUp{
    from{opacity:0; transform:translateY(30px);}
    to{opacity:1; transform:translateY(0);}
}



/* faq-section  */

.fq-container {
    max-width: 1300px;
    margin: 0 auto;
}

.fq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.fq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* COLUMN */
.fq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ITEM */
.fq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: .3s;
    cursor: pointer;
    animation: fqFadeUp .5s ease-out forwards;
    opacity: 0;
}

.fq-item:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.fq-item.active {
    border: 2px solid #1a1a1a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

/* HEADER */
.fq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fq-header:hover {
    background: #fafafa;
}

.fq-question {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

/* TOGGLE */
.fq-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    transition: .3s;
}

.fq-item.active .fq-toggle {
    transform: rotate(45deg);
    color: #1a1a1a;
}

/* CONTENT */
.fq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.fq-item.active .fq-content {
    max-height: 500px;
}

.fq-answer {
    padding: 0 24px 24px;
    font-size: .95rem;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .fq-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    .fq-title {
        font-size: 2rem;
    }

    .fq-header {
        padding: 18px 20px;
    }

    .fq-answer {
        padding: 0 20px 18px;
    }
}

@media(max-width:480px) {
    .fq-title {
        font-size: 1.6rem;
    }
}

/* ANIMATION */
@keyframes fqFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DELAYS */
.fq-column:first-child .fq-item:nth-child(1) {
    animation-delay: .1s;
}

.fq-column:first-child .fq-item:nth-child(2) {
    animation-delay: .2s;
}

.fq-column:first-child .fq-item:nth-child(3) {
    animation-delay: .3s;
}

.fq-column:first-child .fq-item:nth-child(4) {
    animation-delay: .4s;
}

.fq-column:first-child .fq-item:nth-child(5) {
    animation-delay: .5s;
}

.fq-column:last-child .fq-item:nth-child(1) {
    animation-delay: .2s;
}

.fq-column:last-child .fq-item:nth-child(2) {
    animation-delay: .3s;
}

.fq-column:last-child .fq-item:nth-child(3) {
    animation-delay: .4s;
}

.fq-column:last-child .fq-item:nth-child(4) {
    animation-delay: .5s;
}

.fq-column:last-child .fq-item:nth-child(5) {
    animation-delay: .6s;
}


/* about-section  */

.about-section { 
}

.section-title h1 {
    color: #2196F3;
    font-size: 2.5rem;
    font-weight: bold;
}

.section-subtitle h2 {
    font-size: 1.8rem;
    color: #333;
}

.floating-image {
    float: left;
    width: 40%;
    margin: 0 30px 20px 0;
}

.floating-image img {
    width: 100%;
    height: auto;
    border-radius: 65px;
}

.content-text {
    text-align: justify;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
    position: relative;
}

.content-text p {
    margin-bottom: 20px;
}

.highlight {
    color: #000;
    font-weight: 600;
}

.content-text::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .floating-image {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}

.icon-box {
    position: absolute;
    top: 0;
    left: 0;
    padding: 41px 42px 45px 14px;
    border-bottom-right-radius: 30px;
    background-color: #fff;
}

.icon-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 134px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L0,200 Q0,0 200,0 Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    width: 75px;
    height: 75px;
}

.icon-box:after {
    content: "";
    position: absolute;
    bottom: -75px;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L0,200 Q0,0 200,0 Z' fill='white'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    width: 75px;
    height: 75px;
}

.icon-box .icon-6 {
    animation: spin360 10s linear infinite;
}

.icon-6 {
    width: 78px;
    height: 78px;
    background-image: url(../images/icons/icon-1.png);
}

.icon-box-two{
    position: absolute;
    top: 487px;
    left: 334px;
    padding: 75px 0 20px 78px;
    margin-right: -10px;
    border-top-left-radius: 30px;
    background-color: #fff;
}

.icon-box-two:before {
    content: "";
    position: absolute;
    top: -75px;
    left: 66px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L0,200 Q0,0 200,0 Z' fill='white'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    width: 80px;
    height: 75px;
    -webkit-transform: scale(-1);
    transform: scale(-1);
}

.icon-box-two .icon-7 {
    animation: spin360 12s linear infinite;
}


.icon-7 {
    width: 68px;
    height: 68px;
    background-image: url(../images/icons/icon-2.png);
}

.icon-box-two:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: -75px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L0,200 Q0,0 200,0 Z' fill='white'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    width: 75px;
    height: 75px;
    -webkit-transform: scale(-1);
    transform: scale(-1);
}

/* ROTATION ANIMATION */
@keyframes spin360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.icon-6,
.icon-7{
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform-origin: center;
}

@keyframes floatSpin {
0% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-8px) rotate(180deg); }
100% { transform: translateY(0) rotate(360deg); }
}

.icon-box .icon-6{
    animation: floatSpin 8s linear infinite;
}

.icon-box-two .icon-7{
    animation: floatSpin 10s linear infinite reverse;
}

.exp-box{
    position: absolute;
    top: 225px;
    left: 21%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: right;
}

.exp-box .icon-8 {
    position: absolute;
}
.icon-8 {
    width: 255px;
    height: 204px;
    background-image: url(../images/icons/icon-3.png);
}

.exp-box .count {
    position: relative;
    color: #fff;
    margin-bottom: 0;
    padding-left: 7px;
    font-weight: 900;
    font-size: 55px;
}

.exp-box .text {
    position: relative;
    padding-right: 20px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
}

.shape-1 {
    position: absolute;
    top: 7px;
    left: 6px;
}

.shape-1 {
    width: 471px;
    height: 636px;
    background-image: url(../images/icons/shape-1.png);
}

/* blog-section  */

/* SECTION */
.blog-section {
    padding: 80px 0;
}

/* CARD */
.blog-card {
    background: #fff;
}

/* IMAGE */
.blog-img {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* DATE BADGE */
.blog-date {
    position: absolute;
    bottom: -10px;
    right: 25px;
    background: #fff;
    width: 70px;
    height: 70px;
    border-top-left-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-date span:first-child {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
}

.blog-date span:last-child {
    font-size: 13px;
    letter-spacing: 1px;
    color: #7a7a7a;
}

/* CONTENT */
.blog-content {
    padding-top: 25px;
}

/* COMMENT ROW */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c63ff;
    font-size: 14px;
    margin-bottom: 12px;
}

/* TITLE */
.blog-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    line-height: 1.3;
}

/* TEXT */
.blog-text {
    color: #6f6f8a;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* READ MORE */
.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-read {
    color: #6f6f8a;
    font-size: 14px;
    position: relative;
    padding-bottom: 6px;
}

.blog-read::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 130px;
    height: 1px;
    background: #e5e5ff;
}

/* ARROW BUTTON */
.blog-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #6c63ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c63ff;
    transition: 0.3s;
}

.blog-arrow:hover {
    background: #6c63ff;
    color: #fff;
}

/* OWL DOTS OFF */
.owl-dots {
    display: none;
}


/* fooetr  */

/* Go to Top Button */
#goToTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #ff9f43;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    z-index: 999;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 159, 67, 0.3);
}

#goToTopBtn:hover {
    background-color: #ff8534;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 159, 67, 0.4);
}

#goToTopBtn.show {
    display: flex;
}

/* Footer Container */
footer {
    /* background-color: #0f1527; */
    color: #ccc;
    padding: 0;
    /* margin-top: 100px; */
}

/* Contact Info Section */
.contact-info-section {
    background: linear-gradient(135deg, #af621d 0%, #0c3167 100%);
    padding: 40px;
    margin: 40px;
    margin-bottom: 0;
    border-radius: 20px; 
}

.contact-info-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 250px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: capitalize;
}

.contact-value {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.contact-value a {
    color: #af621d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #ff9f43;
}

/* Main Footer Content */
.footer-content {
    padding: 30px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 50px; 
}

/* Company Logo & Description */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
}

.logo-icon {
    width: 150px; 
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.footer-description {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
    max-width: 280px;
    text-align: justify;
}

.social-links {
}

.social-icon {
    width: 42px;
    height: 42px;
    background-color: #1a1a2e;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background-color: #af621d;
    border-color: #af621d;
    transform: translateY(-5px);
    color: #fff;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column-title {
    font-size: 16px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    position: relative;
    padding-bottom: 12px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #af621d, #af621d);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-link:hover {
    color: #af621d;
    padding-left: 6px;
}

/* Newsletter Section */
.newsletter-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 14px 16px;
    background-color: #1a1a2e;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 13px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #555;
}

.newsletter-input:focus {
    outline: none;
    border-color: #af621d;
    background-color: #252549;
}

.newsletter-submit-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #af621d;
    cursor: pointer;
    font-size: 18px;
    padding: 10px 12px;
    transition: all 0.3s ease;
}

.newsletter-submit-btn:hover {
    color: #8e44ad;
    transform: translateY(-50%) scale(1.1);
}

.newsletter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
}

.newsletter-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #af621d;
}

/* Bottom Footer */
.footer-bottom {
    background-color: linear-gradient(90deg, #af621d 0%, #8e44ad 100%);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.8);
}

.footer-copyright a{
    color:#af621d;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: white;
}

.footer-top-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #af621d;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-top-button:hover {
    background-color: #af621d;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px;
    }

    .contact-info-container {
        gap: 20px;
        flex-direction: column;
    }

    .contact-item {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .contact-info-section {
        margin: 20px;
        padding: 30px;
        margin-bottom: 40px;
    }

    .contact-info-container {
        flex-direction: column;
        gap: 25px;
    }

    .contact-item {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    #goToTopBtn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 30px;
        right: 30px;
    }
    
}


@media (max-width: 576px) {
    .footer-content {
        padding: 20px 15px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-column-title {
        font-size: 15px;
    }

    .footer-link {
        font-size: 13px;
    }

    .contact-info-section {
        margin: 15px;
        padding: 20px;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .contact-value {
        font-size: 16px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-bottom-link {
        font-size: 12px;
    }

    .footer-top-button {
        font-size: 12px;
        padding: 8px 16px;
    }

    #goToTopBtn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    
}

/* Gradient background for footer */
.footer-gradient {
    /* background: linear-gradient(180deg, #0b3167 0%, #000000 50%, #0b3167 100%); */
}

/* Decorative pattern */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; 
    pointer-events: none;
    z-index: 0;
}

.footer-wrapper {
    position: relative;
    z-index: 1;
    padding: 20px;
}

/* my-account  */

/* Auth Container */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%);
}

.auth-main-container {
    width: 100%;
    max-width: 1200px;
}

.auth-page-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

/* Tab Navigation */
.auth-tabs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.auth-tab-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    padding-bottom: 12px;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.auth-tab-title:hover {
    color: #0056b3;
}

.auth-tab-title.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

/* Forms Container */
.auth-forms-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Login Form Section */
.login-form-wrapper {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
}

.login-form-wrapper:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.login-form-group {
    margin-bottom: 24px;
}

.login-input-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.login-input-label .login-required-indicator {
    color: #dc3545;
    margin-left: 2px;
}

.login-text-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #1a1a1a;
    transition: all 0.3s ease;
    font-family: inherit;
}

.login-text-input:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    background-color: #fff;
}

.login-text-input::placeholder {
    color: #999;
}

/* Password Field Wrapper */
.login-password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.login-password-toggle-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    padding: 6px;
    transition: color 0.3s ease;
}

.login-password-toggle-btn:hover {
    color: #1a1a1a;
}

/* Checkbox Section */
.login-checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.login-checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0056b3;
}

.login-checkbox-label {
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    font-weight: 500;
    user-select: none;
}

/* Login Button */
.login-submit-btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background-color: #0056b3;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.login-submit-btn:hover {
    background-color: #004085;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

.login-submit-btn:active {
    transform: translateY(0);
}

/* Lost Password Link */
.login-forgot-link {
    display: inline-block;
    font-size: 13px;
    color: #0056b3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-forgot-link:hover {
    color: #004085;
    text-decoration: underline;
}

/* Register Form Section */
.register-form-wrapper {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
}

.register-form-wrapper:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.register-form-group {
    margin-bottom: 24px;
}

.register-input-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.register-input-label .register-required-indicator {
    color: #dc3545;
    margin-left: 2px;
}

.register-text-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #1a1a1a;
    transition: all 0.3s ease;
    font-family: inherit;
}

.register-text-input:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    background-color: #fff;
}

.register-text-input::placeholder {
    color: #999;
}

/* Info Text */
.register-info-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.register-info-text a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.register-info-text a:hover {
    color: #004085;
    text-decoration: underline;
}

/* Register Button */
.register-submit-btn {
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background-color: #0056b3;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.register-submit-btn:hover {
    background-color: #004085;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

.register-submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .auth-forms-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .auth-tabs-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }

    .auth-page-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .login-form-wrapper,
    .register-form-wrapper {
        padding: 30px;
    }

    .auth-tab-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .auth-wrapper {
        padding: 30px 16px;
    }

    .auth-page-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .auth-tabs-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .auth-tab-title {
        font-size: 18px;
    }

    .login-form-wrapper,
    .register-form-wrapper {
        padding: 24px;
    }

    .login-form-group,
    .register-form-group {
        margin-bottom: 18px;
    }

    .login-text-input,
    .register-text-input {
        padding: 11px 12px;
        font-size: 13px;
    }

    .login-submit-btn {
        padding: 11px 20px;
        font-size: 13px;
    }

    .register-info-text {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .auth-wrapper {
        padding: 20px 12px;
    }

    .auth-page-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .auth-tabs-wrapper {
        gap: 12px;
    }

    .auth-tab-title {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .login-form-wrapper,
    .register-form-wrapper {
        padding: 20px;
    }

    .login-form-group,
    .register-form-group {
        margin-bottom: 16px;
    }

    .login-input-label,
    .register-input-label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .login-text-input,
    .register-text-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .login-checkbox-label,
    .login-forgot-link {
        font-size: 12px;
    }

    .register-info-text {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .register-submit-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.login-form-wrapper {
    animation: slideInLeft 0.5s ease;
}

.register-form-wrapper {
    animation: slideInRight 0.5s ease;
}

/* dashboard  */

.unified-main-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 0;
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 40px 20px;
}

/* Sidebar */
.unified-sidebar-nav {
    background-color: white;
    border: 1px solid #e0e0e0;
    margin-right: 20px;
}

.unified-nav-link {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #0056b3;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    cursor: pointer;
    background-color: white;
}

.unified-nav-link:hover {
    background-color: #f8f9fa;
    padding-left: 20px;
}

.unified-nav-link.active {
    background-color: #e7f0ff;
    font-weight: 600;
}

.unified-nav-link:last-child {
    border-bottom: none;
}

/* Content Area */
.unified-content-wrapper {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding:20px 40px;
}

.unified-section {
    display: none;
}

.unified-section.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Title */
.unified-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

/* Alert Box */
.unified-alert-container {
    background-color: #f5f5f5;
    border-top: 4px solid #0056b3;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.unified-alert-icon {
    width: 24px;
    height: 24px;
    border: 2px solid #0056b3;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: #0056b3;
}

.unified-alert-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Welcome Text */
.unified-welcome-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}

.unified-welcome-text a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.unified-welcome-text a:hover {
    color: #004085;
    text-decoration: underline;
}

.unified-welcome-text strong {
    color: #1a1a1a;
}

/* Form Grid */
.unified-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.unified-form-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.unified-form-group {
    display: flex;
    flex-direction: column;
}

.unified-field-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.unified-required-mark {
    color: #dc3545;
    margin-left: 2px;
}

.unified-field-input {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    color: #1a1a1a;
    transition: all 0.3s ease;
    font-family: inherit;
}

.unified-field-input:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.unified-field-input::placeholder {
    color: #999;
}

.unified-field-value {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #f5f5f5;
    color: #1a1a1a;
    font-weight: 500;
}

.unified-helper-text {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
    font-style: italic;
}

/* Section Divider */
.unified-section-divider {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
    margin: 30px 0 20px 0;
}

/* Password Field */
.unified-password-wrapper {
    position: relative;
    display: flex;
}

.unified-password-input {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    color: #1a1a1a;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    padding-right: 40px;
}

.unified-password-input:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.unified-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
}

.unified-password-toggle:hover {
    color: #1a1a1a;
}

/* Button */
.unified-submit-btn {
    padding: 12px 32px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.unified-submit-btn:hover {
    background-color: #004085;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

/* Address Cards Grid */
.unified-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.unified-address-card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 24px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.unified-address-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.unified-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.unified-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.unified-card-link {
    font-size: 13px;
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.unified-card-link:hover {
    color: #004085;
    text-decoration: underline;
}

.unified-card-content {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.unified-card-line {
    margin-bottom: 8px;
}

.unified-card-line:last-child {
    margin-bottom: 0;
}

.unified-card-name {
    font-weight: 600;
    color: #1a1a1a;
}

/* Empty State */
.unified-empty-state {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    border-top: 4px solid #0056b3;
    padding: 20px;
    border-radius: 0 0 4px 4px;
}

.unified-empty-icon {
    width: 24px;
    height: 24px;
    border: 2px solid #0056b3;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0056b3;
    font-size: 14px;
}

.unified-empty-text {
    font-size: 14px;
    color: #666;
    flex: 1;
    margin-left: 16px;
}

.unified-browse-btn {
    padding: 12px 32px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unified-browse-btn:hover {
    background-color: #004085;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

/* Orders Table */
.unified-orders-table-wrapper {
    overflow-x: auto;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 20px;
}

.unified-orders-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.unified-table-header {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e0e0e0;
}

.unified-table-header th {
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.unified-table-body tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.unified-table-body tr:hover {
    background-color: #f8f9fa;
}

.unified-table-body tr:last-child {
    border-bottom: none;
}

.unified-table-row {
    display: table-row;
}

.unified-table-cell {
    padding: 14px 16px;
    font-size: 14px;
    color: #666;
}

.unified-table-cell:first-child {
    font-weight: 600;
    color: #1a1a1a;
}

/* Status Badges */
.unified-status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.unified-status-completed {
    background-color: #d4edda;
    color: #155724;
}

.unified-status-processing {
    background-color: #fff3cd;
    color: #856404;
}

.unified-status-pending {
    background-color: #e2e3e5;
    color: #383d41;
}

.unified-status-shipped {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Action Links */
.unified-action-link {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 13px;
}

.unified-action-link:hover {
    color: #004085;
    text-decoration: underline;
}

/* Downloads Grid */
.unified-downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.unified-download-card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: white;
    transition: all 0.3s ease;
}

.unified-download-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: #0056b3;
}

.unified-download-icon {
    width: 48px;
    height: 48px;
    background-color: #f8f9fa;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0056b3;
}

.unified-download-content {
    flex: 1;
}

.unified-download-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.4;
}

.unified-download-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.unified-download-size {
    font-size: 12px;
    color: #999;
}

.unified-download-btn {
    padding: 8px 16px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

.unified-download-btn:hover {
    background-color: #004085;
    transform: translateY(-2px);
}

/* Invoice Styles */
.invoice-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.invoice-back-link {
    color: #0056b3;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.invoice-back-link:hover {
    color: #004085;
}

.invoice-print-button {
    padding: 10px 20px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.invoice-print-button:hover {
    background-color: #004085;
    transform: translateY(-2px);
}

.invoice-main {
    border: 2px solid #f0f0f0;
    padding:20px 40px;
    background-color: white;
    border-radius: 4px;
}

/* Company Section */
.invoice-company-section {
    /* display: flex; */
    align-items: flex-start;
    /* gap: 20px; */
    /* margin-bottom: 40px; */
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.invoice-company-logo {
    flex-shrink: 0;
}

.invoice-logo-box {
    width: 150px;
    height: 100px; 
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
}

.invoice-company-details {
    flex: 1;
}

.invoice-company-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.invoice-company-address {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
    font-weight: 500;
}

.invoice-company-contact {
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Title & Details Section */
.invoice-title-section {
    display: flex;
    justify-content: end;
    align-items: flex-start;
    margin-bottom: 40px;
}

.invoice-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.invoice-meta {
    text-align: right;
}

.invoice-meta-row {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 13px;
}

.invoice-meta-label {
    color: #666;
    font-weight: 500;
}

.invoice-meta-value {
    color: #1a1a1a;
    font-weight: 600; 
    text-align: right;
}

/* Customer Section */
.invoice-customer-section {
    display: grid;
    grid-template-columns: 1fr 1fr; 
}

.invoice-bill-to,
.invoice-ship-to {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.invoice-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.invoice-customer-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.invoice-customer-details {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.invoice-customer-contact {
    margin-top: 8px;
    font-size: 12px;
    color: #0056b3;
}

.invoice-customer-contact div {
    margin-top: 2px;
}

/* Items Table */
.invoice-items-section {
    margin-bottom: 30px;
}

.invoice-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.invoice-items-header {
    background-color: #f8f9fa;
    border-top: 2px solid #0056b3;
    border-bottom: 2px solid #0056b3;
}

.invoice-items-header th {
    padding: 12px 16px; 
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.invoice-col-description {
    width: 50%;
}

.invoice-col-quantity {
    width: 15%;
}

.invoice-col-price {
    width: 18%;
}

.invoice-col-amount {
    width: 17%;
    text-align: right;
}

.invoice-item-row {
    border-bottom: 1px solid #f0f0f0;
}

.invoice-item-row td {
    padding: 14px 16px;
    font-size: 13px;
    color: #666;
}

.invoice-item-row:last-child {
    border-bottom: none;
}

.invoice-product-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.invoice-product-code {
    font-size: 11px;
    color: #999;
}

.invoice-col-quantity,
.invoice-col-price,
.invoice-col-amount {
    text-align: right;
}

/* Totals Section */
.invoice-totals-section {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.invoice-summary {
    width: 350px;
}

.invoice-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 13px;
}

.invoice-summary-label {
    color: #666;
    font-weight: 500;
}

.invoice-summary-value {
    color: #1a1a1a;
    font-weight: 600;
    text-align: right;
}

.invoice-summary-total {
    background-color: #f8f9fa;
    border-top: 2px solid #0056b3;
    border-bottom: 2px solid #0056b3;
    padding: 14px 16px;
    font-size: 14px;
}

.invoice-summary-total .invoice-summary-label {
    font-weight: 700;
    color: #1a1a1a;
}

.invoice-summary-total .invoice-summary-value {
    font-size: 16px;
    color: #0056b3;
}

/* Payment Section */
.invoice-payment-section {
    margin-bottom: 30px;
    padding:5px 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.invoice-payment-info {
    display: flex;
    gap: 40px;
    margin-top: 12px;
}

.invoice-payment-row {
    display: flex;
    gap: 12px;
    font-size: 13px;
}

.invoice-payment-label {
    color: #666;
    font-weight: 500;
    min-width: 150px;
}

.invoice-payment-value {
    color: #1a1a1a;
    font-weight: 600;
}

.invoice-payment-status-paid {
    background-color: #d4edda;
    color: #155724;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
}

/* Footer */
.invoice-footer {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 12px;
}

.invoice-footer-text {
    margin-bottom: 12px;
    font-size: 13px;
}

.incoise-div{
    justify-content: end;
}

.invoice-footer-contact {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: #0056b3;
}

/* Print Styles */
@media print {
    .invoice-header {
        display: none;
    }

    .invoice-main {
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .invoice-print-button {
        display: none;
    }

    body {
        background-color: white;
    }
}

.unified-page-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .unified-form-grid {
        grid-template-columns: 1fr;
    }

    .unified-cards-grid {
        grid-template-columns: 1fr;
    }

    .unified-downloads-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .invoice-company-section {
        flex-direction: column;
        gap: 16px;
    }

    .invoice-title-section {
        flex-direction: column;
        gap: 20px;
    }

    .invoice-meta {
        text-align: left;
    }

    .invoice-meta-value {
        text-align: left;
    }

    .invoice-customer-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .invoice-items-header th,
    .invoice-item-row td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .invoice-col-description {
        width: 45%;
    }

    .invoice-col-quantity {
        width: 18%;
    }

    .invoice-col-price {
        width: 20%;
    }

    .invoice-col-amount {
        width: 17%;
    }

    .invoice-summary {
        width: 300px;
    }

    .invoice-main {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .invoice-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .invoice-company-name {
        font-size: 20px;
    }

    .invoice-title {
        font-size: 20px;
    }

    .invoice-meta-row {
        flex-direction: column;
        gap: 2px;
    }

    .invoice-items-header th,
    .invoice-item-row td {
        padding: 8px 4px;
        font-size: 11px;
    }

    .invoice-col-description {
        width: 40%;
    }

    .invoice-summary {
        width: 100%;
        margin-top: 20px;
    }

    .invoice-payment-info {
        flex-direction: column;
        gap: 12px;
    }

    .invoice-main {
        padding: 16px;
    }

    .invoice-payment-row {
        flex-direction: column;
        gap: 4px;
    }

    .invoice-payment-label {
        min-width: auto;
    }


    .unified-sidebar-nav {
        margin-right: 0;
        margin-bottom: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .unified-nav-link {
        border-right: 1px solid #f0f0f0;
    }

    .unified-nav-link:nth-child(odd) {
        border-right: 1px solid #f0f0f0;
    }

    .unified-nav-link:nth-child(even) {
        border-right: none;
    }

    .unified-content-wrapper {
        padding: 24px;
        grid-column: 1 / -1;
    }

    .unified-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .unified-form-grid {
        gap: 16px;
        margin-bottom: 24px;
    }

    .unified-empty-state {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
    }

    .unified-empty-text {
        margin-left: 0;
    }

    .unified-browse-btn {
        width: 100%;
    }

    .unified-orders-table-wrapper {
        font-size: 12px;
        overflow-x: auto;
    }

    .unified-table-header th,
    .unified-table-cell {
        padding: 10px 12px;
        font-size: 12px;
    }

    .unified-downloads-grid {
        grid-template-columns: 1fr;
    }

    .unified-download-card {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .unified-download-content {
        flex: 1;
        min-width: 0;
    }

    .unified-download-btn {
        width: auto;
        min-width: 100px;
    }
}

@media (max-width: 576px) {
    .unified-main-wrapper {
        padding: 16px 12px;
    }

    .unified-sidebar-nav {
        grid-template-columns: 1fr;
    }

    .unified-nav-link {
        border-right: none;
    }

    .unified-content-wrapper {
        padding: 16px;
    }

    .unified-section-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .unified-field-input,
    .unified-password-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .unified-submit-btn,
    .unified-browse-btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .unified-field-label {
        font-size: 13px;
    }

    .unified-helper-text {
        font-size: 11px;
    }

    .unified-card-title {
        font-size: 16px;
    }

    .unified-card-content {
        font-size: 13px;
    }

    .unified-table-header th,
    .unified-table-cell {
        padding: 8px 10px;
        font-size: 11px;
    }

    .unified-status-badge {
        padding: 4px 8px;
        font-size: 11px;
    }

    .unified-download-card {
        padding: 16px;
    }

    .unified-download-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        flex-shrink: 0;
    }

    .unified-download-name {
        font-size: 13px;
    }

    .unified-download-date,
    .unified-download-size {
        font-size: 11px;
    }
}


/* cart-section  */

.page-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    padding:0 50px ;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* CART ITEMS TABLE */
.cart-table-wrapper {
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.cart-table thead {
    background-color: #f5f5f5;
    border-bottom: 1px solid #ccc;
}

.cart-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: var(--header-gray);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.cart-table th:first-child {
    width: 50px;
}

.cart-table td {
    padding: 16px;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    vertical-align: middle;
}

.cart-table tbody tr:last-child td {
    border-bottom: none;
}

.remove-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    color: #ccc;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s ease;
}

.remove-icon:hover {
    background-color: #f0f0f0;
    color: #d32f2f;
    border-color: #d32f2f;
}

.product-cell {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.cart-image {
    width: 50px;
    height: 50px;
    background-color: #f5f5f5;
    border-radius: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    flex: 1;
    min-width: 0;
}

.product-name {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: inline-block;
}

.product-name:hover {
    color: #b36720; 
}

.price-cell {
    text-align: right;
    font-weight: 500;
    white-space: nowrap;
}

.quantity-cell {
    text-align: center;
    width: 80px;
}

.quantity-input {
    width: 50px;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.quantity-input:focus {
    outline: none;
    border-color: hsl(212, 100%, 52%);
    box-shadow: 0 0 0 2px rgba(30, 91, 168, 0.1);
}

.subtotal-cell {
    text-align: right;
    font-weight: 500;
    width: 100px;
    white-space: nowrap;
}

.update-cart-btn {
    display: block;
    margin:0 15px 15px 15px;
    padding: 10px 24px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.update-cart-btn:hover {
    background-color: #5a8fbd;
}

/* CART TOTALS SIDEBAR */
.cart-totals {
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 24px;
    height: fit-content;
}

.totals-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.totals-divider {
    border-bottom: 1px solid #ccc;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
}

.totals-row.subtotal-row {
    padding: 14px 0;
}

.totals-row:last-of-type {
    border-bottom: none;
}

.totals-label {
    color: var(--text-dark);
    font-weight: 500;
}

.totals-value {
    color: var(--text-dark);
    font-weight: 500;
    text-align: right;
}

.shipping-section {
    padding: 12px 0;
    border-bottom: 1px solid #ccc;
}

.shipping-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.shipping-status {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 3px;
}

.shipping-location {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.shipping-location strong {
    font-weight: 600;
    color: var(--text-dark);
}

.change-address-btn {
    font-size: 13px;
    color: var(--primary-blue);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
    font-weight: 500;
}

.change-address-btn:hover {
    color: #1a47a0;
    text-decoration: underline;
}

.cod-charges-row {
    padding: 12px 0;
}

.total-final-section {
    padding-top: 14px;
    padding-bottom: 16px;
    /* border-top: 1px solid #ccc; */
    border-bottom: none;
    margin-top: 8px;
}

.total-amount-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.total-final-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.total-final-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.checkout-btn {
    width: 100%;
    padding: 12px 0;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.checkout-btn:hover {
    background-color: #1a47a0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.checkout-btn:active {
    transform: translateY(1px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .cart-container {
        grid-template-columns: 1fr 320px;
        gap: 24px;
    }

    .cart-table th,
    .cart-table td {
        padding: 12px 14px;
        font-size: 13px;
    }

    .product-name {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .cart-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cart-totals {
        padding: 20px;
    }

    .cart-table th:nth-child(4),
    .cart-table td:nth-child(4) {
        display: none;
    }

    .price-cell {
        width: 100px;
    }

    .subtotal-cell {
        width: auto;
    }

    .totals-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .checkout-btn {
        padding: 11px 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 12px;
    }

    .page-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .cart-table {
        font-size: 12px;
    }

    .cart-table th,
    .cart-table td {
        padding: 10px 8px;
    }

    .product-cell {
        gap: 8px;
    }

    .cart-image {
        width: 45px;
        height: 45px;
    }

    .product-name {
        font-size: 11px;
    }

    .remove-icon {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }

    .quantity-input {
        width: 40px;
        padding: 4px 6px;
        font-size: 12px;
    }

    .price-cell,
    .subtotal-cell {
        font-size: 12px;
    }

    .cart-totals {
        padding: 16px;
    }

    .totals-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .totals-row {
        padding: 10px 0;
        font-size: 12px;
    }

    .checkout-btn {
        padding: 10px 0;
        font-size: 13px;
    }
}


/* checkout-page  */

.checkout-container { 
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

/* PAGE TITLE */
.page-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    grid-column: 1 / -1;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

/* LEFT COLUMN - BILLING FORM */
.billing-section {
    width: 100%;
}

.billing-section .section-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #d0d0d0;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.form-label.required::after {
    content: " *";
    color: #d32f2f;
}

.form-input,
.form-select,
.form-textarea {
    padding: 10px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 13px;
    font-family: inherit;
    color: #1a1a1a;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1e5ba8;
    box-shadow: 0 0 0 2px rgba(30, 91, 168, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 32px;
}

.form-textarea {
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 13px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1e5ba8;
}

.form-checkbox label {
    cursor: pointer;
    color: #1a1a1a;
}

/* RIGHT COLUMN - ORDER SUMMARY */
.order-summary {
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 24px;
    height: fit-content;
    background-color: #ffffff;
}

.summary-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.summary-product {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #d0d0d0;
}

.product-details {
    flex: 1;
    font-size: 13px;
    color: #1a1a1a;
    line-height: 1.6;
}

.product-name {
    font-weight: 500;
    margin-bottom: 4px;
}

.product-qty {
    font-size: 12px;
    color: #666666;
}

.product-subtotal {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: right;
    white-space: nowrap;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid #d0d0d0;
}

.summary-row.total-row {
    padding: 14px 0;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid #d0d0d0;
}

.summary-label {
    color: #1a1a1a;
    font-weight: 500;
}

.summary-value {
    color: #1a1a1a;
    font-weight: 500;
    text-align: right;
}

/* PAYMENT METHOD SECTION */
.payment-methods {
    margin-top: 20px;
    padding-top: 16px;
}

.payment-method {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background-color: #f9f9f9;
    border-color: #1e5ba8;
}

.payment-method input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #1e5ba8;
    flex-shrink: 0;
}

.payment-method-content {
    flex: 1;
}

.payment-method-title {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.payment-method-desc {
    font-size: 12px;
    color: #666666;
    background-color: #f5f5f5;
    padding: 8px 10px;
    border-radius: 3px;
    line-height: 1.4;
}

.payment-badge {
    display: inline-block;
    margin-left: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #1e5ba8;
}

/* PRIVACY & TERMS */
.privacy-section {
    font-size: 12px;
    color: #666666;
    padding: 12px 0;
    line-height: 1.6;
    border-top: 1px solid #d0d0d0;
    margin-top: 16px;
}

.privacy-link {
    color: #1e5ba8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #1a47a0;
    text-decoration: underline;
}

/* PLACE ORDER BUTTON */
.place-order-btn {
    width: 100%;
    padding: 12px 0;
    margin-top: 16px;
    background-color: #1e5ba8;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.place-order-btn:hover {
    background-color: #1a47a0;
    box-shadow: 0 2px 8px rgba(30, 91, 168, 0.2);
}

.place-order-btn:active {
    transform: translateY(1px);
}

/* TERMS CHECKBOX */
.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
}

.terms-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #1e5ba8;
    flex-shrink: 0;
}

.terms-check label {
    cursor: pointer;
    color: #1a1a1a;
    flex: 1;
}

.terms-link {
    color: #1e5ba8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #1a47a0;
    text-decoration: underline;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .checkout-container {
        grid-template-columns: 1fr 340px;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row.two-col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px 16px;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .checkout-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .billing-section {
        max-width: 100%;
    }

    .order-summary {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row.two-col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    body {
        padding: 16px 12px;
    }

    .page-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-row.two-col {
        grid-template-columns: 1fr;
    }

    .summary-title {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .payment-method {
        padding: 10px;
        margin-bottom: 10px;
    }

    .place-order-btn {
        padding: 11px 0;
        font-size: 13px;
    }
}

/* Animation for shipping section */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.trust-icon {
    width: 100px;
    height: 100px;
    font-size: 48px;
    transition: transform .3s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
}

/* Mobile tweaks */
@media (max-width:576px) {
    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}


/* product-page-css */

.pdp-product-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    overflow: hidden;
}

/* ---------------- IMAGE GALLERY ---------------- */

.pdp-image-gallery-wrapper {
    background: #f5f5f5;
}

.pdp-main-image-container {
    position: relative;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.pdp-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 20px;
    transition: transform .25s ease;
    transform-origin: center;
    cursor: zoom-in;
}

.pdp-main-image.pdp-zoomed {
    transform: scale(2);
    cursor: zoom-out;
}

/* Thumbnails */

.pdp-thumbnail-gallery {
    display: flex;
    gap: 10px;
    padding: 15px;
    justify-content: center;
    flex-wrap: wrap;
    background: #fff;
}

.pdp-thumbnail {
    width: 70px;
    height: 70px;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-thumbnail.pdp-active {
    border-color: #ff6b6b;
    box-shadow: 0 0 8px rgba(255, 107, 107, .3);
}

.pdp-thumbnail:hover {
    border-color: #ff6b6b;
    transform: translateY(-2px);
}

/* Product Info Section */
.pdp-product-info {
    padding: 30px;
}

.pdp-product-breadcrumb {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.pdp-product-breadcrumb a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.pdp-product-breadcrumb a:hover {
    color: #0056b3;
}

.pdp-product-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.pdp-product-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pdp-warranty-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #666;
}

.pdp-warranty-badge i {
    color: #ff6b6b;
    font-size: 14px;
}

.pdp-price-section {
    margin-bottom: 25px;
}

.pdp-original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.pdp-current-price {
    font-size: 28px;
    font-weight: 700;
    color: #ff6b6b;
}

.pdp-price-currency {
    font-size: 18px;
    color: #ff6b6b;
}

/* Specifications Section */
.pdp-specs-section {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.pdp-specs-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdp-specs-title i {
    color: #ff6b6b;
}

.pdp-spec-item {
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.pdp-spec-label {
    font-weight: 600;
    color: #333;
}

.pdp-spec-value {
    color: #666;
}

.pdp-spec-list {
    margin-left: 20px;
    margin-top: 8px;
}

.pdp-spec-list li {
    margin-bottom: 6px;
    color: #666;
    font-size: 13px;
}

/* Action Buttons */
.pdp-action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.pdp-qty-selector {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
}

.pdp-qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    color: #333;
}

.pdp-qty-btn:hover {
    background: #e9e9e9;
}

.pdp-qty-input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 14px;
    color: #333;
    background: #fff;
    outline: none;
}

.pdp-add-to-cart-btn {
    flex: 1;
    min-width: 150px;
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pdp-add-to-cart-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.pdp-wishlist-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    color: #999;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-wishlist-btn:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
    background: #fff5f5;
}

/* Tabs Section */
.pdp-nav-tabs-custom {
    border-bottom: 2px solid #e9e9e9;
    display: flex;
    gap: 0;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.pdp-nav-tabs-custom .pdp-nav-link {
    border: none;
    color: #666;
    font-size: 14px;
    padding: 15px 0;
    margin-right: 30px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    background: none;
}

.pdp-nav-tabs-custom .pdp-nav-link:hover {
    color: #333;
}

.pdp-nav-tabs-custom .pdp-nav-link.pdp-active {
    color: #333;
    border-bottom-color: #ff6b6b;
}

.pdp-tab-content-custom {
    padding: 30px 0;
}

.pdp-tab-pane-custom {
    display: none;
}

.pdp-tab-pane-custom.pdp-active {
    display: block;
}

/* Description Content */
.pdp-description-content {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.pdp-description-content p {
    margin-bottom: 12px;
}

/* Additional Info */
.pdp-info-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.pdp-info-row:last-child {
    border-bottom: none;
}

.pdp-info-label {
    width: 150px;
    font-weight: 600;
    color: #333;
    flex-shrink: 0;
}

.pdp-info-value {
    flex: 1;
    color: #666;
}

.pdp-info-value a {
    color: #007bff;
    text-decoration: none;
}

.pdp-info-value a:hover {
    text-decoration: underline;
}

/* Reviews */
.pdp-review-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pdp-review-item:last-child {
    border-bottom: none;
}

.pdp-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.pdp-review-avatar {
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 50%;
}

.pdp-review-author {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.pdp-review-rating {
    color: #ffc107;
    font-size: 12px;
}

.pdp-review-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Social Share */
.pdp-share-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.pdp-share-text {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.pdp-share-buttons {
    display: flex;
    gap: 8px;
}

.pdp-share-btn {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
    font-size: 14px;
}

.pdp-share-btn:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
    background: #fff5f5;
}

/* ===============================
MOBILE RESPONSIVE FIXES
=============================== */

@media (max-width: 768px) {

    body {
        padding: 10px 0;
    }

    .pdp-main-image-container {
        min-height: 280px;
    }

    .pdp-main-image {
        padding: 10px;
    }

    .pdp-thumbnail {
        width: 60px;
        height: 60px;
    }

    .pdp-product-info {
        padding: 20px;
    }

    .pdp-product-title {
        font-size: 17px;
    }

    .pdp-current-price {
        font-size: 22px;
    }

    .pdp-original-price {
        font-size: 12px;
    }

    .pdp-specs-section {
        padding: 15px;
    }

    .pdp-spec-item {
        font-size: 13px;
    }

    .pdp-action-buttons {
        flex-direction: column;
    }

    .pdp-qty-selector,
    .pdp-add-to-cart-btn,
    .pdp-wishlist-btn {
        width: 100%;
    }

    .pdp-wishlist-btn {
        height: 45px;
    }

    .pdp-nav-tabs-custom {
        overflow-x: auto;
        white-space: nowrap;
    }

    .pdp-nav-tabs-custom .pdp-nav-link {
        margin-right: 20px;
        font-size: 13px;
        padding: 12px 0;
    }

    .pdp-tab-content-custom {
        padding: 15px 0;
    }

    .pdp-info-row {
        flex-direction: column;
        gap: 4px;
    }

    .pdp-info-label {
        width: 100%;
        font-size: 13px;
    }

    .pdp-info-value {
        font-size: 13px;
    }

}

/* EXTRA SMALL DEVICES */

@media (max-width: 480px) {

    .pdp-main-image-container {
        min-height: 240px;
    }

    .pdp-thumbnail {
        width: 50px;
        height: 50px;
    }

    .pdp-product-title {
        font-size: 16px;
    }

    .pdp-current-price {
        font-size: 20px;
    }

    .pdp-qty-btn {
        width: 35px;
        height: 38px;
    }

    .pdp-qty-input {
        width: 45px;
    }

}

/* siteMap-section  */

.sitemap-title {
    color: #2b2a28;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sitemap-card {
    background-color: white;
    border: 2px solid #073065;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: #2b2a28;
}

.sitemap-card:hover {
    background-color: #073065;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
    text-decoration: none;
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sitemap-card:hover .card-description {
    opacity: 1;
}

.category-section {
    margin-bottom: 40px;
}

.category-header {
    color: #073065;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #073065;
}

.main-links {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .sitemap-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .category-header {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .sitemap-card {
        padding: 15px;
    }
    
    .card-label {
        font-size: 1rem;
    }
}


/* contact-section  */
/* ================= contact WRAPPER ================= */

.prefix-consec-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #0f1b2e;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

@media(max-width:991px) {
    .prefix-consec-contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ================= LEFT FORM ================= */

.prefix-consec-contact-form-section {
    background: #0f1b2e;
    padding: 60px 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.prefix-consec-form-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 8px;
}

.prefix-consec-form-underline {
    width: 50px;
    height: 4px;
    background: #ff6633;
    margin-bottom: 20px;
}

.prefix-consec-form-description {
    font-size: 14px;
    color: #b0c4de;
    margin-bottom: 40px;
}

.prefix-consec-form-group {
    margin-bottom: 25px;
}

.prefix-consec-form-label {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.prefix-consec-form-label-icon {
    font-size: 16px;
    margin-right: 10px;
    color: #ff6633;
}

textarea.form-control {
    min-height: 100px;
    border: 1px solid #4a6fa5;
    padding: 15px;
    border-radius: 4px;
}

textarea.form-control:focus {
    border: 1px solid #ff6633;
}

select {
    background: #0f1b2e;
    border: none;
    border-bottom: 1px solid #4a6fa5;
    color: #fff;
    padding: 10px 0;
    width: 100%;
}

.prefix-consec-submit-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 35px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-top: 20px;
    text-transform: uppercase;
    transition: .3s;
}

.prefix-consec-submit-btn:hover {
    background: #fff;
    color: #0f1b2e;
}

/* ================= RIGHT INFO ================= */

.prefix-consec-contact-info-section {
    background: linear-gradient(135deg, #af621d 0%, #0c3167 100%);
    padding: 60px 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 16%;
    right: 6%;
    border-radius: 20px;
}

.prefix-consec-info-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 35px;
}

.prefix-consec-info-item {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
}

.prefix-consec-info-item-title {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.prefix-consec-info-item-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    margin-right: 12px;
}

.prefix-consec-info-item-content {
    font-size: 14px;
    margin-left: 42px;
    line-height: 1.6;
}

.prefix-consec-info-item-content a{
    color:#ff9f43;
    font-size: 16px;
}

.prefix-consec-info-item-content a:hover{
    color:#af621d;
    font-size: 16px;
}

/* ================= SOCIAL ================= */

.prefix-consec-social-links {
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    gap: 15px;
}

.prefix-consec-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #ff6633;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}

.prefix-consec-social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .9);
}

@media(max-width:576px) {

    .prefix-consec-contact-form-section,
    .prefix-consec-contact-info-section {
        padding: 35px 20px;
    }
}

/* ================= MOBILE LAYOUT FIX ================= */

@media (max-width: 991px){

.prefix-consec-contact-info-section{
    position: relative;
    top: 0;
    right: 0;
    margin-top: 40px;
    width: 100%;
}

.prefix-consec-contact-wrapper{
    padding-bottom: 40px;
}

}

/* ================= TRANSPARENT FORM FIELDS ================= */

.prefix-consec-contact-form-section .form-control,
.prefix-consec-contact-form-section textarea,
.prefix-consec-contact-form-section select{
    background: transparent !important;
    color: #ffffff !important;
    border: none;
    border-bottom: 1px solid #4a6fa5;
    border-radius: 0;
}

.prefix-consec-contact-form-section textarea{
    border: 1px solid #4a6fa5;
}

.prefix-consec-contact-form-section .form-control::placeholder,
.prefix-consec-contact-form-section textarea::placeholder{
    color: #9fb3d1;
}

/* Focus */

.prefix-consec-contact-form-section .form-control:focus,
.prefix-consec-contact-form-section textarea:focus,
.prefix-consec-contact-form-section select:focus{
    background: transparent;
    color:#fff;
    border-color:#ff6633;
    box-shadow:none;
}
/* Fix dropdown option colors */

.prefix-consec-contact-form-section select option{
    background:#0f1b2e;
    color:#ffffff;
}

/* When hovered / selected */

.prefix-consec-contact-form-section select option:checked,
.prefix-consec-contact-form-section select option:hover{
    background:#ff6633;
    color:#ffffff;
}

@media (max-width:576px){
    .prefix-consec-form-group{
        margin-bottom:20px;
    }
}


/* blog-details-page  */

/* Main Container */
.blog-main-container {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* Two Column Layout */
.blog-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 48px;
    align-items: flex-start;
}

/* Left Column - Sticky Image */
.blog-sidebar {
    position: sticky;
    top: 40px;
}

.blog-featured-image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
}

.blog-featured-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; 
}

/* Author Meta */
.blog-author-meta {
    padding-bottom: 32px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0;
}

.blog-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.blog-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-details h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.blog-author-details p {
    margin: 2px 0 0 0;
    font-size: 12px;
    color: #6c757d;
}

.blog-read-time {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

/* Right Column */
.blog-main {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Contact Form */
.blog-contact-form-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.blog-contact-form-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.blog-contact-form-section > p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Form Controls */
.blog-form-label {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    display: block;
}

.blog-form-control {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    font-family: inherit;
}

.blog-form-control:focus {
    border-color: #073065;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    color: #333;
    outline: none;
}

.blog-form-group {
    margin-bottom: 16px;
}

.blog-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-form-group textarea.blog-form-control {
    resize: vertical;
    min-height: 120px;
}

.blog-btn-submit {
    width: 100%;
    padding: 11px 16px;
    background-color: #073065;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.blog-btn-submit:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.blog-btn-submit.success {
    background-color: #198754;
}

/* Recent Blogs Section */
.blog-recent-blogs h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.blog-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: #e9ecef;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.blog-card-meta small {
    font-size: 12px;
    color: #6c757d;
}

.blog-card-meta i {
    color: #adb5bd;
    font-size: 14px;
}

.blog-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
    line-height: 1.4;
    min-height: 32px;
    margin-top: 0;
}

.blog-card-excerpt {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 12px;
    line-height: 1.5;
    flex-grow: 1;
}

.blog-card-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #073065;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 10px;
    color: #0b5ed7;
}

/* Main Article Content */
.blog-article-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.blog-article-content h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 16px 0;
    color: #2c3e50;
    letter-spacing: -1px;
    line-height: 1.2;
}

.blog-article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.blog-article-meta span {
    font-size: 13px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-article-meta i {
    color: #adb5bd;
}

.blog-article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
}

.blog-article-body p {
    margin-bottom: 16px;
}

.blog-article-body h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 16px 0;
    color: #2c3e50;
}

.blog-article-body ul {
    margin-left: 20px;
    margin-bottom: 16px;
    color: #495057;
}

.blog-article-body li {
    margin-bottom: 8px;
}

/* Article Footer - Share Buttons */
.blog-article-footer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-article-footer-label {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

.blog-share-buttons {
    display: flex;
    gap: 12px;
}

.blog-share-btn {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-share-btn:hover {
    background-color: #073065;
    color: white;
    border-color: #073065;
}

/* Success Message */
.blog-success-message {
    display: none;
    padding: 12px 16px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    margin-bottom: 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}

.blog-success-message.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-wrapper {
        grid-template-columns: 1fr 1.5fr;
        gap: 32px;
    }
}

@media (max-width: 992px) {
    .blog-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-article-content {
        padding: 30px;
    }

    .blog-article-content h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .blog-main-container {
        padding: 40px 0;
    }

    .blog-contact-form-section {
        padding: 30px;
    }

    .blog-article-content {
        padding: 20px;
    }

    .blog-article-content h1 {
        font-size: 24px;
    }

    .blog-article-body {
        font-size: 15px;
    }

    .blog-cards {
        grid-template-columns: 1fr;
    }

    .blog-form-row {
        grid-template-columns: 1fr;
    }

    .blog-article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}


















@media screen and (max-width: 600px) {
    .icon-box-two {
        display: none;
    }

    .product-info{
        display: none;
    }

    .shape-1 {
        display: none;
    }
    .exp-box {
        left: 50%;
    }
}


