
/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica;
    font-size: 1.1em;
    background-color: #171717;
    color: #ffffff;
}

/* Container General Styling */
.container {
    padding: 10px 10px 50px 10px;
    margin-left: 0;
    background-color: #222222;
}

/* Card General Styling */
.category-card, .ar-product-card, .product-card, .cart-item-container,
.video-thumbnail, .news-card, .featured-article, .news-item, .banner-image,
.account-item {
  border-radius: 10px;
  filter: drop-shadow(5px 5px 20px #111111);
  background-size: cover;
}

/* Card General Styling with hover effects*/
.category-card:hover, .ar-product-card:hover, .product-card:hover,
.cart-item-container:hover, .video-thumbnail:hover, .news-card:hover,
.featured-article:hover, .news-item:hover, .banner-image:hover,
.account-item:hover {
    background-image: none;
    background-color: #222222;
    transition: 0.3s;
    border: #222222 1px solid;
}

.tabs {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    background-color: #222;
    margin-bottom: 20px;
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
    margin: 0 5px;
}

/* Navigation Styles */
.navigation-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 10;
}

.nav-icon {
    font-size: 24px;
    color: #000;
}

.nav-icon img {
    width: 50px;
    height: 50px;
}

/** Desktop navigation styles **/

.sidebar-navigation {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 200px;
    background-color: #222;
    padding-top: 20px;
    display: none;
    flex-direction: column;
    gap: 15px;
    padding-left: 20px;
    font-size: 18px;
}

.sidebar-navigation ul {
    list-style: none;
    padding: 0;
}

.sidebar-navigation ul li {
    padding: 15px;
}

.sidebar-navigation ul li a {
    color: #fff;
    text-decoration: none;
}

.checkout-summary-desktop {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    background-color: #222;
    padding: 20px;
}

.right-sidebar-summary-desktop {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    background-color: #222;
    padding: 20px;
}

/** News Page assets **/

.promotion-banner {
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.banner-image {
  background-image: url("https://bufferwall.com/download/B20190923T000000374_1200x600.jpg");
  background-size: cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #555;
    color: #fff;
}

.featured-article {
    display: flex;
    flex-direction: column;
    background-color: black;
    margin-bottom: 20px;
    border: 1px solid grey;
    padding: 10px;
}

.featured-image {
    background-color: #444;
    background-image: url("https://images.pexels.com/photos/1402790/pexels-photo-1402790.jpeg");
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.featured-caption {
    margin-top: 10px;
}

.additional-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.news-card {
    background-color: #333;
    padding: 10px;
    position: relative;
    border: 2px solid #444;
}

.news-image {
    background-color: #555;
    background-image: url("https://images.pexels.com/photos/1503009/pexels-photo-1503009.jpeg");
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 10px;
}

.news-caption {
    color: #ccc;
}

.news-item {
  background-color: #555;
  color: #fff;
  padding: 10px;
  margin-bottom: 10px;
}

/** Shop Page assets **/

.regular-products {
    background-color: #222222;
    text-align: center;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;

}

.product-card {
  padding: 60px;
  background-image:
  url("https://cdn.midjourney.com/0a7f4e65-9d17-46a0-b90f-cc4c74e2d293/0_3.png");
}


.share-icon {
  width: 20px;
  height: 20px;
}


.shop-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.category-card {
    background-color: #444;
    padding: 60px;
    text-align: center;
    color: #fff;
    background-image: url("https://cdn.midjourney.com/a12814df-a1d4-4235-9cc5-073842bcab55/0_2.png");
}

.ar-product-card {
  background-image:url("https://cdn.midjourney.com/9d69cf2e-31a8-42ec-b2a2-6c9e36e535ed/0_0.png");
  background-size: cover;
  padding: 60px;
  margin-bottom: 20px;
}

/* Cart Page Styles */
.cart-items {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;

}

.cart-item-container {
    display: flex;
    background-color: #333;
    padding: 15px;
    font-size: 0.5em;
}

.product-image {
    width: 100px;
    height: 100px;
    background-color: #555;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.product-details {
    flex: 1;
}

/* Account Page Styles */
.tab-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tab {
    background-color: #333;
    padding: 15px;
    flex: 1;
    text-align: center;
    margin-right: 10px;
    cursor: pointer;
}

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

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

.account-item {
    background-color: #333;
    padding: 15px;
    cursor: pointer;
}

/* Form Styling */

.contact-form-container {
    padding: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form .required {
    color: #e74c3c;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #222;
    color: #ffffff;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #e74c3c;
    outline: none;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background-color: black;
}

/* Video Page Styles */
.video-fullscreen {
    width: 100%;
    height: calc(100vh - 60px); /* Subtracting height of navigation bar */
    background-color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
}

.video-details {
    position: absolute;
    bottom: 37px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    z-index: 5;
    padding: 10px;
}

.video-grid {
    margin-left: 220px; /* Adjusted for sidebar width */
    padding: 20px;
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.video-thumbnail {
    background-color: #555;
    padding-top: 350px;
    position: relative;
    cursor: pointer;
}

.video-thumbnail:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.video-details {
  position: absolute;
  bottom: 30px;
}


/* Tablet adjustments */
@media (min-width: 601px) and (max-width: 1024px) {
    .container {
        padding: 20px;
    }
    .tabs {
        padding: 15px 0;
    }
    .tab-item {
        padding: 15px;
    }
    .shop-categories, .ar-products {
        gap: 15px;
    }
    .category-card, .ar-product-card, .product-card {
        padding: 100px;
        margin-bottom: 20px;
    }

    .banner-image {
    height: 600px;
}

  .ar-products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 20px;

    }

    .ar-product-card {
    background-color: #777;
    padding: 110px;
    text-align: center;
    color: #fff;
}

.regular-products {
    padding: 30px;
  }



}

/* Some Desktop adjustments */
@media (min-width: 1025px) {

  /* Desktop Navigation Handling */
      .sidebar-navigation {
          display: block;
      }
      .navigation-bar {
          display: none;
      }

      .container {
        margin-left: 220px;
        margin-right: 270px;
      }

      .checkout-summary-desktop {
      display: block;
    }

      .right-sidebar-summary-desktop {
        display: block;
      }

      .account-grid {
        padding: 100px;
      }

    .tabs {
        padding: 20px 0;
    }
    .tab-item {
        padding: 20px;
        font-size: 1.2em;
        margin: 0 10px;
    }
    .shop-categories, .ar-products {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;

    }
    .category-card, .ar-product-card, .product-card {
        padding: 130px;
        background-color: #777;

    }

    .video-fullscreen {
        display: none;
    }
    .video-grid {
        display: grid;
        padding: 100px;
        margin-right: 270px;
    }

    .video-details {
        padding: 30px 0px 30px 0px;
    }



}
