@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap");

*{
    font-family: "IBM Plex Sans Arabic", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: "IBM Plex Sans Arabic", sans-serif;
    background-color: #0b1a16;  
    scroll-behavior: smooth;    
}

.container {
    padding: 0 250px;
}

#nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    height: 60px;
    padding: 2rem 3%; 
    margin: 25px 0 0 0;
    border-radius: 12px;
    border: solid 1px #a3855f;
}

#nav-bar #logo-name {
    display: flex;
    align-items: center;
    gap: 15px;
}

#nav-bar #logo-name img {
    border: solid #c7af90 1px;
    border-radius: 50%;
    width: 48px;
}

#nav-bar #logo-name a {
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: #a3855f;
    transition: color 0.3s;
    line-height: 0;
}

#nav-bar #logo-name a:hover {
    color: #816a4b;
}

#nav-bar ul {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

#nav-bar ul li {
    list-style-type: none;
}

#nav-bar ul li a {
    text-decoration: none;
    color: #c7af90;
    line-height: 0;
    font-weight: 500;
    transition: color 0.3s;
}

#nav-bar ul li a:hover {
    color: #a3855f;
}

#hero-section {
    height: 240px;
    width: 95%;
    margin: 15px 0 0 0;
    border-bottom: #a3855f solid 1px;
    padding: 1.6rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px auto 0 auto;
}

#hero-section #hero-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

#hero-text-1, #hero-text-2, #hero-text-3 {
    font-size: 1.8rem;
    color: #816a4b;
    font-weight: 500;
    line-height: 1.5;
}

#hero-text-3 {
    color: #a3855f;;
}

#hero-section #hero-text #header-note {
    margin-top: 20px;
    font-size: 0.8rem;
    font-weight: 200;
    color: #c7af90;
}

#side-card {
    width: fit-content;
    height: fit-content;
    padding: 15px;
    border: #a3855f solid 1px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: default;
}

#side-card #header-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

#side-card #header-card #card-aleart {
    padding: 0 5px;
    border: #a3855f solid 1px;
    border-radius: 6px;
    font-weight: 600;
    background-color: #c7af90;
    color: #15302b;
    font-size: 12px;
}

#side-card #header-card #card-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

#side-card #header-card #card-info i {
    font-size: 0.5rem;
    color: #a3855f;
}

#side-card #header-card #card-info p {
    font-weight: 300;
    font-size: 1.1rem;
    color: #a3855f;
}

#side-card #card-body {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #816a4b;
    border: solid 1px #c7af90;
    border-radius: 6px;
    padding: 8px 8px 8px 12px;
    width: fit-content;
    color: #0b1a16;
}

#side-card #card-body #body-text {
    font-weight: 400;
    font-size: 1.4rem;
    color: #0b1a16;
}

#about-section {
    height: fit-content;
    width: 95%;
    padding: 1.6rem 0;
    margin: 15px auto 20px auto;
    border-bottom: #a3855f solid 1px;
}

#about-section p {
    color: #a3855f;
    font-size: 1.2rem;
}

#about-section p span {
    color: #c7af90;
    font-weight: 600;
}

#posts-section {
    height: fit-content;
    width: 95%;
    padding: 1.6rem 0;
    margin: 15px auto 15px auto;
}

.section-title {
    color: #c7af90;
    margin: 0 0 15px 0;
    font-weight: 400;
}

#posts-section #posts-section-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.post {
    width: 100%;
    height: fit-content;
    background-color: #15302b;
    border-radius: 12px;
    border: #1b3d37 solid 2px;
    display: flex;
    gap: 15px;
    padding: 3px;
    cursor: pointer;
    transition: 0.3s;
}

.post:hover {
    background-color: #1b3d37;
    border: #15302b solid 2px;
}

.post #post-img-container {
    overflow: hidden;
    width: 250px;
    height: 130px;
    border-radius: 0 9px 9px 0;
    position: relative;
}

.post #post-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post #post-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.post #post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.post #post-info #post-tag {
    padding: 10px 8px;
    border: #c7af90 solid 1px;
    border-radius: 6px;
    font-weight: 600;
    background-color: #c7af90bd;
    color: #15302b;
    font-size: 14px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 5px;
}

.post #post-info #post-tag p {
    font-size: 0.6rem;
    line-height: 0;
}

.post #post-info #post-tag i {
    font-size: 0.6rem;
    line-height: 0;
}

.post #post-info #post-title {
    color: #a3855f;
    font-weight: 800;
    font-size: 1.2rem;
}

.post #post-info #post-date {
    font-size: 0.8rem;
    font-weight: 400;
    color: #c7af90;
}

.post #post-body #left-arrow {
    margin-left: 15px;
    font-size: 1.4rem;
    color: #816a4b;
}

#posts-section #show-all-posts a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background-color: #a3855f;
    border-radius: 6px;
    margin: 15px 0 0 0;
    padding: 10px 0;
    color: #0b1a16;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

#posts-section #show-all-posts a:hover {
    background-color: #816a4b;
}

#posts-section #show-all-posts a > i {
    transition: 0.3s;
}

#posts-section #show-all-posts a:hover > i {
    transform: translateX(-5px);
}

#products-section {
    height: fit-content;
    width: 95%;
    padding: 1.6rem 0;
    margin: 15px auto 15px auto;
}

#products-section #products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

#products-section #products-container .product {
    flex: 1 1 calc(50% - 12px);
    background-color: #15302b;
    border-radius: 12px;
    border: #1b3d37 solid 2px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 3px;
}

.product #product-img-container {
    overflow: hidden;
    width: 100%;
    height: 220px;
    border-radius:  9px 9px 0 0;
    position: relative;
}

.product #product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product #product-body {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 20px 10px 0 10px;
    padding-bottom: 10px;
    border-bottom: solid #1b3d37 1px;
}

.product #product-body #product-title {
    color: #f1cea0;
    font-weight: 600;
}

.product #product-body #product-desc {
    color: #c7af90;
    font-weight: 200;
    font-size: 0.8rem;
}

.product #product-footer {
    display: flex;
    justify-content: space-between;
    margin: 20px 10px 20px 10px;
}

.product #product-footer #product-price {
    color: #c7af90;
    line-height: 2;
}

.product #product-footer #product-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 7px;
    line-height: 0;
    cursor: pointer;
    text-decoration: none;
    color: #0b1a16;
    background-color: #816a4b;
    padding: 10px;
    border-radius: 6px;
    transition: 0.3s;
}

.product #product-footer #product-action:hover {
    background-color: #a3855f;
    transform: scale(1.02);
}

.product #product-footer #product-action i {
    transform: rotate(90deg);
}

#products-section #show-all-products a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background-color: #a3855f;
    border-radius: 6px;
    margin: 15px 0 0 0;
    padding: 10px 0;
    color: #0b1a16;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

#products-section #show-all-products a:hover {
    background-color: #816a4b;
}

#products-section #show-all-products a > i {
    transition: 0.3s;
}

#products-section #show-all-products a:hover > i {
    transform: translateX(-5px);
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 35px;
    gap: 10px;
    margin-bottom: 20px;
}

footer #footer-title {
    font-size: 1rem;
    color: #c7af90; 
    font-weight: 100;
}

footer #footer-social-icons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    gap: 0.8rem;
}

footer .footer-social-icon {
    background-color: #15302b;
    border: solid #1b3d37 1px;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 1.2rem;
    color: #a3855f;
    transition: 0.3s;
    cursor: pointer;
}

footer .footer-social-icon:hover {
    background-color: #1b3d37;
    color: #816a4b;
}

footer .footer-social-icon a{
    all: unset;
    cursor: pointer;
}

/* Smooth Scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.back-btn {
    position: relative;
    display: flex;
    align-items: center;
    color: #816a4b;
    text-decoration: none;
    gap: 12px;
    transition: 0.3s;
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
    width: fit-content;
}

.back-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #816a4b;
    transition: 0.2s;
    border-radius: 50%;
}

.back-btn:hover::after {
    width: 100%;
}

.back-btn:hover {
    gap: 15px;
}

.back-btn p {
    font-size: 1.4rem;
    font-weight: 500;
}

.section-hint {
    font-weight: 200;
    width: 100%;
    text-align: center;
    color: #c7af90;
    font-size: 1.2rem;
}

/* ===============================
   Media Queries للتجاوب المحسن
   =============================== */

/* شاشات كبيرة جداً - 4K وأكبر */
@media screen and (min-width: 1920px) {
    .container {
        padding: 0 400px;
    }
    
    #hero-text-1, #hero-text-2, #hero-text-3 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    #about-section p {
        font-size: 1.4rem;
    }
}

/* شاشات كبيرة - أجهزة سطح المكتب الكبيرة */
@media screen and (max-width: 1600px) {
    .container {
        padding: 0 300px;
    }
}

/* شاشات متوسطة كبيرة - أجهزة سطح المكتب العادية */
@media screen and (max-width: 1400px) {
    .container {
        padding: 0 200px;
    }
}

/* الأجهزة اللوحية الكبيرة والشاشات الصغيرة */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 100px;
    }
    
    #nav-bar {
        padding: 1.8rem 2%;
    }
    
    #hero-section {
        height: 220px;
    }
    
    #hero-text-1, #hero-text-2, #hero-text-3 {
        font-size: 1.7rem;
    }
    
    #side-card {
        padding: 12px;
    }
    
    #side-card #header-card {
        gap: 40px;
    }
}

/* أجهزة لوحية متوسطة */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 60px;
    }
    
    #nav-bar {
        height: auto;
        padding: 1.5rem 2%;
    }
    
    #nav-bar ul {
        gap: 1.2rem;
    }
    
    #hero-section {
        height: auto;
        padding: 2rem 0;
    }
    
    #hero-text-1, #hero-text-2, #hero-text-3 {
        font-size: 1.6rem;
    }
    
    .post {
        gap: 12px;
    }
    
    .post #post-img-container {
        width: 220px;
        height: 120px;
    }
    
    #products-section #products-container .product {
        flex: 0 0 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .product #product-img-container {
        height: 250px;
    }
}

/* الأجهزة اللوحية العادية */
@media screen and (max-width: 900px) {
    .container {
        padding: 0 40px;
    }
    
    #nav-bar {
        flex-direction: column;
        gap: 1.5rem;
        height: auto;
        padding: 1.2rem;
    }
    
    #nav-bar #logo-name {
        gap: 12px;
    }
    
    #nav-bar #logo-name a {
        font-size: 1.4rem;
    }
    
    #hero-section {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 2.5rem 0;
    }
    
    #side-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .section-title {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    #about-section p {
        font-size: 1.1rem;
        text-align: justify;
        line-height: 1.8;
    }
}

/* الأجهزة اللوحية الصغيرة والهواتف الكبيرة */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    #nav-bar {
        margin: 10px 0 0 0;
        padding: 1rem;
        border-radius: 8px;
    }
    
    #nav-bar #logo-name {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    #nav-bar #logo-name img {
        width: 40px;
    }
    
    #nav-bar #logo-name a {
        font-size: 1.2rem;
    }
    
    #nav-bar ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    #nav-bar ul li a {
        font-size: 1rem;
        padding: 8px 12px;
        border-radius: 6px;
        transition: all 0.3s;
    }
    
    #nav-bar ul li a:hover {
        background-color: #15302b;
    }
    
    #hero-section {
        padding: 2rem 0;
        margin: 10px auto 0 auto;
    }
    
    #hero-text-1, #hero-text-2, #hero-text-3 {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    
    #hero-section #hero-text #header-note {
        margin-top: 15px;
        font-size: 0.75rem;
        text-align: center;
    }
    
    #side-card {
        max-width: 100%;
        padding: 15px;
    }
    
    #side-card #header-card {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    #side-card #card-body #body-text {
        font-size: 1.3rem;
    }
    
    .post {
        flex-direction: column;
        padding: 5px;
    }
    
    .post #post-img-container {
        width: 100%;
        height: 200px;
        border-radius: 8px 8px 0 0;
    }
    
    .post #post-body {
        padding: 15px;
        gap: 12px;
    }
    
    .post #post-info {
        gap: 10px;
        width: 100%;
    }
    
    .post #post-info #post-tag {
        padding: 8px 10px;
        width: fit-content;
    }
    
    .post #post-info #post-title {
        font-size: 1.15rem;
        line-height: 1.4;
    }
    
    .post #post-body #left-arrow {
        margin: 0;
        align-self: flex-end;
        margin-top: 10px;
    }
    
    .product #product-img-container {
        height: 200px;
    }
    
    .product #product-body {
        margin: 15px 12px 0 12px;
        gap: 10px;
    }
    
    .product #product-footer {
        margin: 15px 12px 15px 12px;
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* الهواتف المحمولة الكبيرة */
@media screen and (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
    
    #nav-bar {
        padding: 0.8rem;
    }
    
    #nav-bar #logo-name a {
        font-size: 1.1rem;
    }
    
    #nav-bar ul {
        gap: 1rem;
    }
    
    #nav-bar ul li a {
        font-size: 0.95rem;
        padding: 6px 10px;
    }
    
    #hero-text-1, #hero-text-2, #hero-text-3 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    #about-section p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .post #post-img-container {
        height: 180px;
    }
    
    .post #post-info #post-title {
        font-size: 1.1rem;
    }
    
    .post #post-info #post-tag {
        padding: 7px 8px;
        font-size: 12px;
    }
    
    .post #post-info #post-tag p,
    .post #post-info #post-tag i {
        font-size: 0.55rem;
    }
    
    .product #product-img-container {
        height: 180px;
    }
    
    .product #product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .product #product-footer #product-action {
        justify-content: center;
        padding: 12px;
    }
    
    footer {
        padding: 15px;
    }
    
    footer #footer-social-icons-container {
        gap: 0.6rem;
    }
    
    footer .footer-social-icon {
        padding: 8px 10px;
        font-size: 1.1rem;
    }
}

/* الهواتف المحمولة الصغيرة */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    #nav-bar {
        margin: 8px 0 0 0;
        padding: 0.7rem;
    }
    
    #nav-bar #logo-name img {
        width: 35px;
    }
    
    #nav-bar #logo-name a {
        font-size: 1rem;
    }
    
    #nav-bar ul li a {
        font-size: 0.9rem;
        padding: 5px 8px;
    }
    
    #hero-section {
        padding: 1.5rem 0;
    }
    
    #hero-text-1, #hero-text-2, #hero-text-3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    #hero-section #hero-text #header-note {
        font-size: 0.7rem;
        margin-top: 12px;
    }
    
    #side-card {
        padding: 12px;
    }
    
    #side-card #header-card {
        gap: 15px;
    }
    
    #side-card #header-card #card-info p {
        font-size: 1rem;
    }
    
    #side-card #card-body #body-text {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    #about-section p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .post {
        border-radius: 8px;
    }
    
    .post #post-img-container {
        height: 160px;
        border-radius: 6px 6px 0 0;
    }
    
    .post #post-body {
        padding: 12px;
    }
    
    .post #post-info #post-title {
        font-size: 1.05rem;
        line-height: 1.3;
    }
    
    .post #post-info #post-date {
        font-size: 0.75rem;
    }
    
    .product #product-img-container {
        height: 160px;
    }
    
    .product #product-body {
        margin: 12px 10px 0 10px;
    }
    
    .product #product-body #product-title {
        font-size: 1rem;
    }
    
    .product #product-body #product-desc {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .product #product-footer {
        margin: 12px 10px 12px 10px;
    }
    
    .product #product-footer #product-price {
        font-size: 0.9rem;
    }
    
    .product #product-footer #product-action {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    footer #footer-title {
        font-size: 0.85rem;
        text-align: center;
        line-height: 1.4;
    }
    
    footer .footer-social-icon {
        padding: 6px 8px;
        font-size: 1rem;
    }
    
    .back-btn p {
        font-size: 1.2rem;
    }
    
    .section-hint {
        font-size: 1.1rem;
        line-height: 1.5;
        padding: 20px 10px;
    }
}

/* الهواتف المحمولة الصغيرة جداً */
@media screen and (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    #nav-bar {
        padding: 0.6rem;
    }
    
    #nav-bar #logo-name {
        gap: 6px;
    }
    
    #nav-bar #logo-name img {
        width: 32px;
    }
    
    #nav-bar #logo-name a {
        font-size: 0.95rem;
    }
    
    #nav-bar ul {
        gap: 0.8rem;
    }
    
    #nav-bar ul li a {
        font-size: 0.85rem;
        padding: 4px 6px;
    }
    
    #hero-text-1, #hero-text-2, #hero-text-3 {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    #hero-section #hero-text #header-note {
        font-size: 0.65rem;
    }
    
    #side-card {
        padding: 10px;
    }
    
    #side-card #header-card {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    #side-card #header-card #card-aleart {
        font-size: 10px;
        padding: 2px 4px;
    }
    
    #side-card #header-card #card-info p {
        font-size: 0.9rem;
    }
    
    #side-card #card-body {
        width: 100%;
        justify-content: center;
        padding: 6px 8px;
    }
    
    #side-card #card-body #body-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    #about-section p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .post #post-img-container {
        height: 140px;
    }
    
    .post #post-body {
        padding: 10px;
    }
    
    .post #post-info #post-title {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .post #post-info #post-tag {
        padding: 6px 7px;
        font-size: 11px;
    }
    
    .post #post-info #post-tag p,
    .post #post-info #post-tag i {
        font-size: 0.5rem;
    }
    
    .post #post-info #post-date {
        font-size: 0.7rem;
    }
    
    .product #product-img-container {
        height: 140px;
    }
    
    .product #product-body {
        margin: 10px 8px 0 8px;
    }
    
    .product #product-body #product-title {
        font-size: 0.95rem;
    }
    
    .product #product-body #product-desc {
        font-size: 0.7rem;
    }
    
    .product #product-footer {
        margin: 10px 8px 10px 8px;
        gap: 10px;
    }
    
    .product #product-footer #product-price {
        font-size: 0.85rem;
    }
    
    .product #product-footer #product-action {
        padding: 8px;
        font-size: 0.8rem;
    }
    
    footer {
        padding: 12px;
        gap: 8px;
    }
    
    footer #footer-title {
        font-size: 0.8rem;
    }
    
    footer #footer-social-icons-container {
        gap: 0.5rem;
    }
    
    footer .footer-social-icon {
        padding: 5px 7px;
        font-size: 0.9rem;
    }
    
    .section-hint {
        font-size: 1rem;
        padding: 15px 5px;
    }
}

/* الهواتف الصغيرة جداً - أقل من 320px */
@media screen and (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    #nav-bar {
        padding: 0.5rem;
        margin: 5px 0 0 0;
    }
    
    #nav-bar #logo-name a {
        font-size: 0.9rem;
    }
    
    #nav-bar ul li a {
        font-size: 0.8rem;
        padding: 3px 5px;
    }
    
    #hero-text-1, #hero-text-2, #hero-text-3 {
        font-size: 1rem;
    }
    
    #hero-section #hero-text #header-note {
        font-size: 0.6rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    #about-section p {
        font-size: 0.9rem;
    }
    
    .post #post-img-container {
        height: 120px;
    }
    
    .post #post-info #post-title {
        font-size: 0.95rem;
    }
    
    .product #product-img-container {
        height: 120px;
    }
    
    footer #footer-title {
        font-size: 0.75rem;
        word-break: break-word;
    }
    
    .section-hint {
        font-size: 0.95rem;
    }
}

/* تحسينات إضافية للتجاوب */

/* تحسين الانتقالات والحركات للأجهزة المحمولة */
@media screen and (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    .post,
    .product,
    #nav-bar ul li a,
    footer .footer-social-icon {
        transition: all 0.2s ease;
    }
    
    /* تحسين النقر على الأجهزة المحمولة */
    .post:active,
    .product:active {
        transform: scale(0.98);
    }
    
    #nav-bar ul li a:active,
    footer .footer-social-icon:active {
        transform: scale(0.95);
    }
}

/* تحسين المسافات بين العناصر */
@media screen and (max-width: 600px) {
    #about-section,
    #posts-section,
    #products-section {
        padding: 1.2rem 0;
    }
    
    #posts-section #posts-section-container {
        gap: 12px;
    }
    
    #products-section #products-container {
        gap: 15px;
    }
}

/* تحسين الخطوط للقراءة على الشاشات الصغيرة */
@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    * {
        letter-spacing: 0.02em;
    }
}

/* ضمان عدم تجاوز العناصر لحدود الشاشة */
@media screen and (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
    
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

[data-aos="fade-up"] {
  transform: translateY(25px) !important; /* ارتفاع بسيط فقط */
  transition-timing-function: ease-out !important;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

[data-aos="slide-right"] {
  transform: translateX(-25px) !important; /* ارتفاع بسيط فقط */
  transition-timing-function: ease-out !important;
}

[data-aos="slide-right"].aos-animate {
  transform: translateX(0) !important;
  opacity: 1 !important;
}