/* Header Styling */
.sns-header {
    background: #fff;
    padding: 15px 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.sns-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sns-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}
.cta-btn {
    background: #000;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Hero Section */
.sns-hero {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f9f9f9 0%, #ececec 100%);
}
.hero-title {
    font-size: 42px;
    color: #222;
    font-weight: 800;
}
.brand-name {
    color: #f39c12; /* Apnar logo-r colour onujayi change korte paren */
}
.hero-subtitle {
    font-size: 18px;
    color: #555;
    margin: 20px 0;
}
.hero-badges span {
    display: inline-block;
    margin: 10px;
    padding: 5px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-weight: bold;
}


.sns-main-homepage-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.sns-section-wrapper {
    margin-bottom: 50px;
}
.sns-section-title {
    font-size: 24px;
    color: #111;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 12px;
}
.sns-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

/* প্রিমিয়াম কার্ড ডিজাইন */
.sns-premium-product-card {
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 4px;
    padding: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}
.sns-premium-product-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.sns-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff4d4d;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    z-index: 5;
}
.sns-card-img-wrapper {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.sns-card-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.sns-card-details h3 a {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
}
.sns-card-pricing {
    margin: 10px 0 15px 0;
}
.sns-current-price {
    color: #000;
    font-size: 16px;
    font-weight: 700;
}
.sns-old-price {
    color: #999;
    margin-left: 8px;
    font-size: 13px;
    text-decoration: line-through;
}
.sns-premium-btn {
    background: #000000;
    color: #ffffff !important;
    text-align: center;
    display: block;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    margin-top: auto;
    transition: background 0.2s ease;
}
.sns-premium-btn:hover {
    background: #222;
}
/* থিমের ডিফল্ট মেনুর টেক্সট কালার কালো করার চূড়ান্ত কোড */
#site-navigation a,
.main-navigation a,
.nav-menu a,
.theme-menu a,
ul.menu a,
li.menu-item a {
    color: #111111 !important; /* লেখাগুলো একদম ডার্ক ব্ল্যাক হবে */
    font-weight: 600 !important; /* দেখতে প্রিমিয়াম ও স্পষ্ট লাগবে */
    transition: color 0.3s ease;
}

/* মাউস ওপরে নিলে (Hover) যাতে চমৎকার অরেঞ্জ কালার হয় */
#site-navigation a:hover,
.main-navigation a:hover,
.nav-menu a:hover,
li.menu-item a:hover {
    color: #ff9f43 !important; 
}

/* রেসপন্সিভ ব্রেকপয়েন্ট */
@media (max-width: 1024px) { .sns-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .sns-product-grid { grid-template-columns: repeat(2, 1fr); } }