/*
Theme Name: Sawad
Theme URI: https://sawadcafe.com
Author: Sawad Cafe
Description: We at Sawad Cafe are confident that you will have an unforgettable experience.
Version: 1.0
Text Domain: sawad
*/
/*
#bec2ae
*/
body{padding:0;margin:0}
.site-container{max-width: 1400px;
    margin: 0 auto;
}
section.container {
    padding: 30px;
}
thead,th {
    background: #bec2ae;
}
.theme-social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.theme-social-links a.social-link {
  display: inline-block;
  width: 30px;
  height: 30px;
    padding: 5px;
    border-radius: 50%;
    line-height: 1.5em;
  transition: transform 0.2s ease;
}
.theme-social-links a:hover {
  transform: scale(1.1);}
.social-link img {
    max-width: 30px;
}
.dashicons-cart:before{display:none;}
.intro-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.intro-popup.active {
    opacity: 1;
    pointer-events: auto;
}

.intro-popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    min-height:70vh;
    width: 90%;
    position: relative;
}

.intro-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.intro-popup h2 {
    margin-bottom: 15px;
}

.intro-popup p {
    margin-bottom: 20px;
}

.intro-popup .button {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Branches */

.branches h3 {
  margin-bottom: 10px;
}
.branches ul {
  list-style: none;
  padding: 0;
}
.branches li {
    margin-bottom: 10px;
    background-color: #f7f8f6;
    padding: 0px 15px;
    min-height: 50px;
    line-height: 60px;
    border-radius: 8px;
    text-align: right;
}
.branches li:hover{background-color:#bec2ae;}
.branches li:hover a{border-color:#e7e8e3;
        background-color:#e7e8e3;}
        
.branch-item {
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}
.branch-item input {
    width: 100%;
    margin-bottom: 5px;
    box-sizing: border-box;
}
.remove-branch {
    background: #d63638;
    color: #fff;
}
.no-branches {
    color: #777;
    font-style: italic;
}
/**/
.site-header {
  width: 100%;
  padding: 15px 30px 0;
  box-sizing: border-box;
  align-items: center;
  border-bottom:1px solid #bec2ae;
  position:fixed;
  z-index:55;
      top: 0;
    left: 0;
    right: 0;
  background-color: #ffffffde;
    color: #000000;
}

.header-inner {
  display: flex;
  width: 100%;
  padding:10px 0;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  max-height: 50px;
  width: auto;
}

.site-info {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-size: 1.25rem;
  margin: 0;
}

.site-tagline {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
  max-height: 30px;
    overflow: hidden;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-link {
  text-decoration: none;
  color: inherit;
  position: relative;
}

.cart-count {
  background: red;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 5px;
  border-radius: 10px;
  position: absolute;
  top: -5px;
  right: 10px;
}

.popup-button {
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 5px;
  padding: 6px 10px;
  cursor: pointer;
}

.popup-button:hover {
  background: rgba(0, 0, 0, 0.05);
}
.button{
    background-color: #e7e8e3;
    padding: 8px 20px;
    border: 2px solid #bec2ae;
    border-radius: 5px;
}
a.cart-link.button svg {
    width: 20px;
    height: 20px;
    margin: -3px 0;
}
.whatsapp {
    display: flex;
    justify-content: center;
    line-height: 25px;
}
.whatsapp > span {
    padding: 8px 20px;
    font-weight: bold;
	color: red;
}
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #25D366;
    color: #fff !important;
    padding: 5px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s 
ease;
    width: 50%;
    justify-content: center;
}
.whatsapp-btn svg {
    fill: #fff;
    width: 30px;
}
.whatsapp-btn:hover {
    background-color: #1ebe5d;
}

.whatsapp-btn img {
    width: 20px;
    height: 20px;
    display: inline-block;
}

main#main {
    margin-top: 200px;
}
main#site-content {
    margin-top: 150px;
}
/*****/
/* ===== Modal ===== */
.sawad-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  transition: opacity 0.3s ease;
}

.sawad-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.sawad-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.item-branch .title{font-size:18px;font-weight:bold;}
.item-branch a{
    float: left;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 55px;
    text-align: center;
    margin: 10px;
}
.item-branch a:first-of-type {
    background: #dbeafe;
}
.item-branch a:first-of-type svg {
    stroke: #2563eb;
}
.item-branch a:last-of-type {
    background: #dcfce7;
}
.item-branch a:last-of-type svg {
    stroke: #16a34a;
}

/***********/
.site-footer{
        text-align: center;
    padding: 20px;
    background-color: #bec2ae;
    
}
/*****************/
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover,
 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt{
    background-color:  #bec2ae !important;
    color: #333;
}.woocommerce-error, .woocommerce-info, .woocommerce-message{
    border-top-color: #bec2ae;
    background-color: #e7e8e3;
}
a:-webkit-any-link {
    color: #333;
}
.woocommerce-info::before {
    color: #bec2ae;
}

@media all and (max-width: 580px) {
    main .site-container{max-width:85%;}
.header-left,.header-right{gap:5px}
.header-left{max-width: 250px;}
.button {padding: 8px;}
}

@media (max-width: 480px) {
    .header-left {
        max-width: 205px;
    }
	.wc-cat-btn {
		padding:5px;}
	
    .site-header{padding:5px 10px 0}
	.header-inner{
		padding: 5px 0 2px;
	}
	.wc-category-buttons {margin: 5px 0;}
}
