@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   1. BRAND GLOBAL RESETS (پریمیم لک اور ہموار اینیمیشنز)
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: all 0.25s ease-in-out; /* پوری سائٹ پر سوفٹ ایفیکٹس کے لیے */
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc; /* پریمیم لائٹ سرمئی بیک گراؤنڈ */
  color: #0f172a; /* گہرا پریمیم بلیک */
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==========================================================================
   2. TOP BAR & TICKER (برانڈڈ نوٹیفکیشن بار)
   ========================================================================== */
.top-bar {
  background: #0f172a; /* ڈارک تھیم کے مطابق گہرا رنگ */
  color: #ffd814; /* ایمیزون گولڈن یلو ٹیکسٹ */
  overflow: hidden;
  height: 38px;
  position: relative;
  border-bottom: 1px solid #1e293b;
}

.ticker-text {
  position: absolute;
  white-space: nowrap;
  line-height: 38px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: tickerMove 14s linear infinite; /* لوپ کو ریپیٹ کرنے کے لیے infinite کیا */
}

@keyframes tickerMove {
  0% { left: 100%; transform: translateX(0); }
  10% { left: 50%; transform: translateX(-50%); } /* بیچ میں آ کر ہلکا سا رکے گا */
  40% { left: 50%; transform: translateX(-50%); }
  60% { left: 50%; transform: translateX(-50%); }
  90% { left: 50%; transform: translateX(-50%); }
  100% { left: -100%; transform: translateX(0); }
}

/* ==========================================================================
   3. STICKER NAVIGATION HEADER (ماڈرن برانڈڈ مینو بار)
   ========================================================================== */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.95); /* گلاسی ایفیکٹ */
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #f1f5f9;
}

/* اگر آپ کا پرانا ریڈ ہیڈر کہیں نیچے یوز ہو رہا ہے تو اسے بھی پریمیم لک دے دی */
.site-header {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 40px 20px;
  text-align: center;
  color: #ffffff;
}

/* ===== LOGO FIX ===== */
.logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff5500; /* برانڈ اورنج بارڈر */
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.15);
}

/* ===== HOME BUTTON ===== */
.home-btn {
  background: #f1f5f9;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-icon {
  width: 22px;
  height: 22px;
  stroke: #0f172a;
  stroke-width: 2px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-btn:hover {
  background: #0f172a;
}

.home-btn:hover .home-icon {
  stroke: #ffd814; /* ہور کرنے پر ایمیزون گولڈ رنگ */
}

/* ==========================================================================
   4. ULTRA-MODERN HERO SECTION (پوری اسکرین پر بیلنسڈ اور فٹ)
   ========================================================================== */
.flexi-hero {
    background: radial-gradient(circle at top right, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0; /* دائیں بائیں کا پیڈنگ ہٹا کر ٹاپ/باٹم فکس کیا */
    overflow: hidden;
    width: 100%;
}

.hero-container {
    max-width: 1200px; /* تمام گرڈز کی چوڑائی کے عین برابر */
    width: 92%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Text Content Area */
.hero-content {
    flex: 1.2;
    max-width: 580px;
    text-align: left;
}

.hero-tagline {
    background-color: #ffffff;
    color: #ff5500;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: inline-block;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #e2e8f0;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Action Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px; /* ماڈرن کیپسول شیپ */
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: #0f172a;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
    background-color: #ff5500;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 85, 0, 0.2);
}

.btn-secondary {
    background-color: #ffd814;
    border: 1px solid #fcd200;
    color: #0f1111;
    box-shadow: 0 4px 12px rgba(253, 210, 0, 0.15);
}

.btn-secondary:hover {
    background-color: #f7ca00;
    transform: translateY(-3px);
}

.btn-secondary .arrow {
    margin-left: 6px;
    font-weight: bold;
}

/* Image Graphic Area */
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 420px;
    background: #ffffff;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; /* پریمیم فلوئڈ شکل */
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 8px solid #ffffff;
    animation: morphing 10s infinite ease-in-out;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modern Fluid Animation for Image */
@keyframes morphing {
    0% { border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
    50% { border-radius: 55% 45% 35% 65% / 45% 55% 45% 55%; }
    100% { border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
}

/* ==========================================================================
   MOBILE TRUST BOXES VERTICAL FIX (بیجز کو 4 لائنوں میں کرنے کا فکس)
   ========================================================================== */

@media (max-width: 991px) {
    /* مین سیکشن کو کالم شیپ دیں تاکہ ڈبے اوپر نیچے آئیں */
    .trust-section {
        flex-direction: column !important; 
        align-items: center !important;
        gap: 12px !important; /* ڈبوں کے بیچ کا درمیانی فاصلہ */
        padding: 20px !important;
    }

    /* ہر ڈبے کو پوری چوڑائی دیں تاکہ ٹیکسٹ کھل کر سامنے آئے */
    .trust-box {
        width: 100% !important;
        max-width: 320px !important; /* موبائل پر ڈبے کی متناسب چوڑائی */
        min-width: unset !important;
        justify-content: center !important; /* ٹیکسٹ اور آئیکن بالکل درمیان میں */
        padding: 14px 20px !important;
        margin: 0 !important;
    }
}

/* ==========================================================================
   📱 6. PROFESSIONAL RESPONSIVE ADJUSTMENTS (موبائل اور ٹیبلٹ فکس)
   ========================================================================== */
@media (max-width: 992px) {
    .top-header {
        padding: 15px 20px;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image-bg {
        max-width: 340px;
        height: 340px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}
/* ==========================================================================
   CONVERTED LAYOUT & MAIN PRODUCTS SECTION (اوپر والے پریمیم اسٹائل کے مطابق)
   ========================================================================== */

.container {
  max-width: 1200px; /* اوپر والے سیکشنز کے عین مطابق متوازن چوڑائی */
  margin: 0 auto;
  padding: 40px 15px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a; /* پریمیم گہرا کالا رنگ */
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.container p {
  font-size: 1.05rem;
  margin-bottom: 40px;
  color: #64748b; /* سوفٹ ماڈرن گرے ٹیکسٹ */
}

/* لائیو کاؤنٹر کا پریمیم اور کلین اسٹائل */
.live-counter {
  background: linear-gradient(135deg, #ff9900 0%, #ff5500 100%); /* سمر بینر جیسا گریڈینٹ */
  color: #ffffff;
  text-align: center;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 30px; /* ماڈرن کیپسول شیپ */
  margin: 20px auto 40px auto;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.15);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   CONVERTED PRODUCT GRID (رسپونسیو اور متوازن کالمز)
   ========================================================================== */
.grid {
  display: grid;
  gap: 25px; /* کارڈز کے درمیان خوبصورت فاصلہ */
  padding: 10px 0;
} 

/* 📱 Mobile (2 Columns - بالکل صاف اور فٹ) */
@media (max-width: 767px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* 平板 Tablet (3 Columns) */
@media (min-width: 768px) and (max-width: 1023px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 💻 Desktop (6 کے بجائے 4 کالمز - پروڈکٹ کھل کر سامنے آئے گی) */
@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   CONVERTED CARD STYLES (سمر پروڈکٹ کارڈ جیسا پریمیم لک)
   ========================================================================== */
.card {
  background: #ffffff; /* گہرے رنگ کے بجائے پریمیم وائٹ بیک گراؤنڈ */
  border-radius: 16px; /* ماڈرن گولائی */
  overflow: hidden;
  border: 1px solid #e2e8f0; /* لائٹ ماڈرن بارڈر */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  text-align: left; /* ٹیکسٹ الائنمنٹ لیفٹ */
  height: 100%;
}

/* ہور کرنے پر اوپر اٹھنے والا پریمیم ایفیکٹ */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  border-color: #cbd5e1;
}

/* تصویر کا باکس (امیج کو کنٹرول اور فکس کرنے کے لیے سب سے اہم حصہ) */
.card-img-wrap {
  height: 240px; /* فکسڈ ہائٹ تاکہ کوئی تصویر ڈبے سے باہر نہ جائے */
  background-color: #f8fafc; /* ہلکا گرے بیک گراؤنڈ */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}

/* تصویر کا فائنل کنٹرول رول */
.card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain; /* تصویر کٹے گی نہیں، بالکل صاف اور سینٹر میں رہے گی */
  transition: transform 0.3s ease;
}

/* ہور کرنے پر تصویر کا ہلکا سا زوم ہونا */
.card:hover .card-img-wrap img {
  transform: scale(1.04);
}

/* پروڈکٹ کا ٹائٹل / ٹیکسٹ ایریا */
.title {
  padding: 20px;
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a; /* گہرا پریمیم کالا رنگ */
  line-height: 1.4;
  flex-grow: 1;
}

.card a {
  text-decoration: none;
  color: inherit;
  display: block;
}





/* ================= CUSTOM ORDERS ================= */

.custom-orders {
  margin-top: 80px;
  padding: 50px 20px;
  background: #f5f7fa;
  border-radius: 14px;
  text-align: center;
}

.custom-orders h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #0A3D91;
}

.custom-orders p {
  color: #111111;
  margin-bottom: 40px;
}

.custom-grid {
  display: grid;
  gap: 20px;
}

/* Mobile */
@media (max-width: 767px) {
  .custom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet & Desktop */
@media (min-width: 768px) {
  .custom-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.custom-card img {
  width: 100%;
  border-radius: 12px;
  transition: 0.3s ease;
}

.custom-card img:hover {
  transform: scale(1.05);
}

.custom-card h3 {
  margin-top: 10px;
  font-size: 14px;
  color: #111111;
}



/* ==========================================================================
   FLEXTA AMAZON BUTTON: CENTER ALIGN & SPACING FIX (فائنل اور مکمل ورژن)
   ========================================================================== */

/* بٹن کا مین ڈبہ (Parent Container) */
.buttons {
    display: flex !important;
    justify-content: center !important; /* کمپیوٹر (ڈیسکٹاپ) پر بٹن کو بالکل درمیان میں لائے گا */
    width: 100% !important;
    margin-bottom: 40px !important; /* بٹن کے نیچے اگلی لائن سے 40px کا شاندار اور پروفیشنل فاصلہ */
    margin-top: 20px !important;    /* اوپر والے ٹیکسٹ سے بھی ہلکی سی سپیسنگ */
}

/* اصل ایمیزون بٹن کا لنک اسٹائل */
.buttons .btn-secondary {
    display: inline-flex !important; /* بٹن کو دائیں بائیں پھیلنے سے روکے گا اور سائز فکس رکھے گا */
    align-items: center !important;
    justify-content: center !important;
    width: auto !important; /* چوڑائی صرف بٹن کے اندرونی ٹیکسٹ کے مطابق ہوگی */
    min-width: 250px !important; /* بٹن کی ایک پریمیم کم سے کم چوڑائی تاکہ لک برانڈڈ لگے */
    padding: 14px 35px !important; /* بٹن کے اندر اوپر نیچے اور دائیں بائیں خوبصورت جگہ */
    font-weight: 700 !important; /* ٹیکسٹ کو بولڈ اور واضح کرے گا */
    border-radius: 50px !important; /* کیپسول نما پریمیم گول شیپ */
    transition: all 0.3s ease !important; /* ماؤس لانے پر ہموار موومنٹ کا افیکٹ */
}

/* بٹن پر ماؤس لے جانے کا اثر (Hover Effect) */
.buttons .btn-secondary:hover {
    transform: translateY(-2px) !important; /* ہلکا سا اوپر اٹھے گا */
    box-shadow: 0 10px 20px rgba(255, 216, 20, 0.3) !important; /* پیلا گلو شیڈو */
}

/* 📱 موبائل اسکرین کے لیے خودکار سیٹنگ (Responsive) */
@media (max-width: 991px) {
    .buttons {
        justify-content: center !important; /* موبائل پر بھی بالکل سینٹر رہے گا */
        margin-bottom: 30px !important; /* موبائل کے حساب سے نچلا فاصلہ ہلکا سا متناسب */
    }
    .buttons .btn-secondary {
        width: 90% !important; /* موبائل پر انگلی سے کلک کرنے کی آسانی کے لیے 90% چوڑائی */
        max-width: 320px !important;
    }
}

/* ===== Footer Main Styles ===== */
.site-footer {
  background-color: #e64d00;
  color: #ffffff;
  padding: 60px 0 0 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}



/* ===== Footer Columns ===== */
.footer-column h4 {
  font-size: 16px;
  margin: 0 0 24px 0;
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 14px;
}

.footer-column ul li a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* ===== Newsletter Section ===== */
.footer-column p {
  color: #a0a0a0;
  font-size: 15px;
  margin: 0 0 16px 0;
}

.newsletter-form {
  display: flex;
  margin-top: 8px;
  max-width: 320px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #333;
  background: #1e1e1e;
  color: #fff;
  outline: none;
  font-size: 14px;
  border-radius: 4px 0 0 4px;
}

.newsletter-form input:focus {
  border-color: #ff5500;
}

.newsletter-form input::placeholder {
  color: #666;
}

.newsletter-form button {
  padding: 12px 20px;
  background: #ff5500;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s ease;
  border-radius: 0 4px 4px 0;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #e64d00;
}

.support-email {
  margin-top: 24px;
  color: #a0a0a0;
  font-size: 14px;
  font-weight: 500;
}

.social-links {
  list-style: none;
  padding: 0;
}

.social-links li {
  margin: 10px 0;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.social-links svg {
  width: 24px;
  height: 24px;
}

.social-links a:hover {
  opacity: 0.8;
}

/* ===== FOOTER ===== */

.site-footer{
text-align:center;
padding:35px 15px;
background:#f5f5f5;
font-size:14px;
color: #666;
border-top:1px solid #e5e5e5;
}

.footer-line a{
color:#666;
text-decoration:none; 
margin:0 4px;
}

.footer-line a:hover{
text-decoration:underline;
}

.footer-line span{
margin:0 4px;
color:#999;
}

.affiliate-text{
margin-top:10px;
font-size:13px;
color:#777;
max-width:650px;
margin-left:auto;
margin-right:auto;
}

  
/* Custom CSS for Summer 2026 Section */
.summer-finds-section {
    background-color: #f7f9fa;
    padding: 50px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.summer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.summer-banner {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ff9900 0%, #ff5500 100%);
    padding: 30px;
    border-radius: 12px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.summer-banner h2 {
    font-size: 2rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    letter-spacing: 1px;
}

.summer-banner p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

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

.product-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    z-index: 1;
}

.badge-trending { background-color: #e44d26; }
.badge-hot { background-color: #ff1e56; }
.badge-popular { background-color: #00b4d8; }

.product-image {
    height: 250px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    color: #333333;
}

.product-info p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.amazon-btn {
    background-color: #ffd814;
    border: 1px solid #fcd200;
    color: #0f1111;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
    display: block;
}

.amazon-btn:hover {
    background-color: #f7ca00;
    color: #0f1111;
}

.amazon-icon {
    font-weight: bold;
    margin-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .summer-banner h2 { font-size: 1.6rem; }
    .product-grid { grid-template-columns: 1fr; }
}